added dcolour to set and get
This commit is contained in:
parent
baef6f20c2
commit
1403bd17f9
@ -464,6 +464,9 @@ int luatpt_set_property(lua_State* l)
|
|||||||
} else if (strcmp(prop,"y")==0){
|
} else if (strcmp(prop,"y")==0){
|
||||||
offset = offsetof(particle, y);
|
offset = offsetof(particle, y);
|
||||||
format = 2;
|
format = 2;
|
||||||
|
} else if (strcmp(prop,"dcolour")==0){
|
||||||
|
offset = offsetof(particle, dcolour);
|
||||||
|
format = 1;
|
||||||
} else {
|
} else {
|
||||||
return luaL_error(l, "Invalid property '%s'", prop);
|
return luaL_error(l, "Invalid property '%s'", prop);
|
||||||
}
|
}
|
||||||
@ -612,6 +615,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,"dcolour")==0){
|
||||||
|
lua_pushinteger(l, parts[i].dcolour);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
if (strcmp(prop,"id")==0){
|
if (strcmp(prop,"id")==0){
|
||||||
lua_pushnumber(l, i);
|
lua_pushnumber(l, i);
|
||||||
return 1;
|
return 1;
|
||||||
|
Loading…
Reference in New Issue
Block a user