1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2024-11-08 00:37:15 +01:00

Aliased several methods for sprite entity type.

This commit is contained in:
Sandu Liviu Catalin 2015-11-11 09:54:44 +02:00
parent ae1ec72715
commit ba1f933e7b

View File

@ -581,10 +581,12 @@ bool Register_CSprite(HSQUIRRELVM vm)
.Prop(_SC("path"), &CSprite::GetFilePath)
/* Functions */
.Func(_SC("show_all"), &CSprite::ShowAll)
.Func(_SC("show_to"), &CSprite::ShowFor)
.Func(_SC("show_for"), &CSprite::ShowFor)
.Func(_SC("show_range"), &CSprite::ShowRange)
.Func(_SC("hide_all"), &CSprite::HideAll)
.Func(_SC("hide_for"), &CSprite::HideFor)
.Func(_SC("hide_from"), &CSprite::HideFor)
.Func(_SC("hide_range"), &CSprite::HideRange)
/* Overloads */
.Overload< void (CSprite::*)(const Vector2i &) const >