mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 23:02:08 +00:00
- fixed: The pointer defaulr for GetDistance was incorrect.
This commit is contained in:
parent
a603af805c
commit
91938cd35b
1 changed files with 1 additions and 1 deletions
|
@ -107,7 +107,7 @@ class Actor : Thinker native
|
||||||
// DECORATE compatible functions
|
// DECORATE compatible functions
|
||||||
native bool CheckClass(class<Actor> checkclass, int ptr_select = AAPTR_DEFAULT, bool match_superclass = false);
|
native bool CheckClass(class<Actor> checkclass, int ptr_select = AAPTR_DEFAULT, bool match_superclass = false);
|
||||||
native int CountInv(class<Inventory> itemtype, int ptr_select = AAPTR_DEFAULT);
|
native int CountInv(class<Inventory> itemtype, int ptr_select = AAPTR_DEFAULT);
|
||||||
native float GetDistance(bool checkz, int ptr = AAPTR_DEFAULT);
|
native float GetDistance(bool checkz, int ptr = AAPTR_TARGET);
|
||||||
native float GetAngle(int flags, int ptr = AAPTR_DEFAULT);
|
native float GetAngle(int flags, int ptr = AAPTR_DEFAULT);
|
||||||
native float GetZAt(float px = 0, float py = 0, float angle = 0, int flags = 0, int pick_pointer = AAPTR_DEFAULT);
|
native float GetZAt(float px = 0, float py = 0, float angle = 0, int flags = 0, int pick_pointer = AAPTR_DEFAULT);
|
||||||
native int GetSpawnHealth();
|
native int GetSpawnHealth();
|
||||||
|
|
Loading…
Reference in a new issue