Small changes...
This commit is contained in:
parent
cbf06c5d33
commit
495639f8b3
30
raylib.ads
30
raylib.ads
@ -3495,20 +3495,34 @@ package Raylib is
|
|||||||
Convention => C,
|
Convention => C,
|
||||||
External_Name => "DrawModel";
|
External_Name => "DrawModel";
|
||||||
|
|
||||||
--~procedure DrawModelEx (Model model, Vector3 position, Vector3 rotationAxis, float rotationAngle, Vector3 scale, Color tint) with
|
procedure Draw_Model_Ex (
|
||||||
--~Import => True,
|
Data : Model := No_Model;
|
||||||
--~Convention => C,
|
Position : Vector_3D := (0.0, 0.0, 0.0);
|
||||||
--~External_Name => "";
|
Axis : Vector_3D := (0.0, 0.0, 0.0);
|
||||||
|
Angle : Float := 0.0;
|
||||||
|
Scale : Vector_3D := (1.0, 1.0, 1.0);
|
||||||
|
Tint : Color := White
|
||||||
|
) with
|
||||||
|
Import => True,
|
||||||
|
Convention => C,
|
||||||
|
External_Name => "DrawModelEx";
|
||||||
|
|
||||||
--~procedure DrawModelWires (Model model, Vector3 position, float scale, Color tint) with
|
--~procedure DrawModelWires (Model model, Vector3 position, float scale, Color tint) with
|
||||||
--~Import => True,
|
--~Import => True,
|
||||||
--~Convention => C,
|
--~Convention => C,
|
||||||
--~External_Name => "";
|
--~External_Name => "";
|
||||||
|
|
||||||
--~procedure DrawModelWiresEx (Model model, Vector3 position, Vector3 rotationAxis, float rotationAngle, Vector3 scale, Color tint) with
|
procedure Draw_Model_Wires_Ex (
|
||||||
--~Import => True,
|
Data : Model := No_Model;
|
||||||
--~Convention => C,
|
Position : Vector_3D := (0.0, 0.0, 0.0);
|
||||||
--~External_Name => "";
|
Axis : Vector_3D := (0.0, 0.0, 0.0);
|
||||||
|
Angle : Float := 0.0;
|
||||||
|
Scale : Vector_3D := (1.0, 1.0, 1.0);
|
||||||
|
Tint : Color := White
|
||||||
|
) with
|
||||||
|
Import => True,
|
||||||
|
Convention => C,
|
||||||
|
External_Name => "DrawModelWiresEx";
|
||||||
|
|
||||||
--~procedure DrawBoundingBox (BoundingBox box, Color color) with
|
--~procedure DrawBoundingBox (BoundingBox box, Color color) with
|
||||||
--~Import => True,
|
--~Import => True,
|
||||||
|
Loading…
Reference in New Issue
Block a user