✳️ZEP 스크립트 상호작용 오브젝트 가이드



Last updated
Was this helpful?



Last updated
Was this helpful?
Was this helpful?
App.onObjectTouched.Add(function (sender, x, y, tileID, obj) {
if (obj !== null) {
if (obj.type == ObjectEffectType.INTERACTION_WITH_ZEPSCRIPTS) {
App.sayToAll(`Number = ${obj.text}, Value = ${obj.param1}`, 0xFFFFFF);
}
} else {
App.sayToAll(`obj is null`, 0xFFFFFF);
}
});