mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 14:51:40 +00:00
- fix scale members in actor.zs
This commit is contained in:
parent
ac0a68c7ca
commit
a847dacaaa
1 changed files with 3 additions and 3 deletions
|
@ -115,7 +115,7 @@ class Actor : Thinker native
|
|||
native double FloatSpeed;
|
||||
native SpriteID sprite;
|
||||
native uint8 frame;
|
||||
native fvector2 Scale;
|
||||
native vector2 Scale;
|
||||
native TextureID picnum;
|
||||
native double Alpha;
|
||||
native readonly color fillcolor; // must be set with SetShade to initialize correctly.
|
||||
|
@ -374,8 +374,8 @@ class Actor : Thinker native
|
|||
native readonly deprecated("2.3", "Use Vel.X instead") double MomX;
|
||||
native readonly deprecated("2.3", "Use Vel.Y instead") double MomY;
|
||||
native readonly deprecated("2.3", "Use Vel.Z instead") double MomZ;
|
||||
native deprecated("2.3", "Use Scale.X instead") float ScaleX;
|
||||
native deprecated("2.3", "Use Scale.Y instead") float ScaleY;
|
||||
native deprecated("2.3", "Use Scale.X instead") double ScaleX;
|
||||
native deprecated("2.3", "Use Scale.Y instead") double ScaleY;
|
||||
|
||||
//FStrifeDialogueNode *Conversation; // [RH] The dialogue to show when this actor is used.;
|
||||
|
||||
|
|
Loading…
Reference in a new issue