mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-04-02 10:27:13 +02:00
Aliased several methods for sprite entity type.
This commit is contained in:
parent
ae1ec72715
commit
ba1f933e7b
@ -581,10 +581,12 @@ bool Register_CSprite(HSQUIRRELVM vm)
|
|||||||
.Prop(_SC("path"), &CSprite::GetFilePath)
|
.Prop(_SC("path"), &CSprite::GetFilePath)
|
||||||
/* Functions */
|
/* Functions */
|
||||||
.Func(_SC("show_all"), &CSprite::ShowAll)
|
.Func(_SC("show_all"), &CSprite::ShowAll)
|
||||||
|
.Func(_SC("show_to"), &CSprite::ShowFor)
|
||||||
.Func(_SC("show_for"), &CSprite::ShowFor)
|
.Func(_SC("show_for"), &CSprite::ShowFor)
|
||||||
.Func(_SC("show_range"), &CSprite::ShowRange)
|
.Func(_SC("show_range"), &CSprite::ShowRange)
|
||||||
.Func(_SC("hide_all"), &CSprite::HideAll)
|
.Func(_SC("hide_all"), &CSprite::HideAll)
|
||||||
.Func(_SC("hide_for"), &CSprite::HideFor)
|
.Func(_SC("hide_for"), &CSprite::HideFor)
|
||||||
|
.Func(_SC("hide_from"), &CSprite::HideFor)
|
||||||
.Func(_SC("hide_range"), &CSprite::HideRange)
|
.Func(_SC("hide_range"), &CSprite::HideRange)
|
||||||
/* Overloads */
|
/* Overloads */
|
||||||
.Overload< void (CSprite::*)(const Vector2i &) const >
|
.Overload< void (CSprite::*)(const Vector2i &) const >
|
||||||
|
Loading…
x
Reference in New Issue
Block a user