tpt.get_property("id",x,y)

This commit is contained in:
jacksonmj 2011-09-06 06:37:26 +08:00 committed by Simon Robertshaw
parent 5892c74595
commit 89ff8ad9aa

View File

@ -612,6 +612,10 @@ int luatpt_get_property(lua_State* l)
lua_pushnumber(l, parts[i].y); lua_pushnumber(l, parts[i].y);
return 1; return 1;
} }
if (strcmp(prop,"id")==0){
lua_pushnumber(l, i);
return 1;
}
} }
else if (strcmp(prop,"type")==0){ else if (strcmp(prop,"type")==0){
lua_pushinteger(l, 0); lua_pushinteger(l, 0);