Distinguish 'virtual object' names from object events
This commit is contained in:
+4
-4
@@ -1180,22 +1180,22 @@ bool8 ScrCmd_setobjectmovementtype(struct ScriptContext *ctx)
|
||||
bool8 ScrCmd_createvobject(struct ScriptContext *ctx)
|
||||
{
|
||||
u8 graphicsId = ScriptReadByte(ctx);
|
||||
u8 objectEventId = ScriptReadByte(ctx);
|
||||
u8 virtualObjId = ScriptReadByte(ctx);
|
||||
u16 x = VarGet(ScriptReadHalfword(ctx));
|
||||
u32 y = VarGet(ScriptReadHalfword(ctx));
|
||||
u8 elevation = ScriptReadByte(ctx);
|
||||
u8 direction = ScriptReadByte(ctx);
|
||||
|
||||
CreateObjectSprite(graphicsId, objectEventId, x, y, elevation, direction);
|
||||
CreateVirtualObject(graphicsId, virtualObjId, x, y, elevation, direction);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
bool8 ScrCmd_turnvobject(struct ScriptContext *ctx)
|
||||
{
|
||||
u8 objectEventId = ScriptReadByte(ctx);
|
||||
u8 virtualObjId = ScriptReadByte(ctx);
|
||||
u8 direction = ScriptReadByte(ctx);
|
||||
|
||||
TurnObjectEventSprite(objectEventId, direction);
|
||||
TurnVirtualObject(virtualObjId, direction);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user