Forgot to put these in Lua. (Not gonna make a fifth exe today just for this one change, though.)

This commit is contained in:
toaster 2019-09-11 17:32:25 +01:00
parent 10a0b38ab1
commit 9aed6374cd
1 changed files with 10 additions and 0 deletions

View File

@ -52,6 +52,8 @@ enum skin {
skin_supercolor, skin_supercolor,
skin_prefoppositecolor, skin_prefoppositecolor,
skin_highresscale, skin_highresscale,
skin_contspeed,
skin_contangle,
skin_soundsid, skin_soundsid,
skin_availability skin_availability
}; };
@ -88,6 +90,8 @@ static const char *const skin_opt[] = {
"supercolor", "supercolor",
"prefoppositecolor", "prefoppositecolor",
"highresscale", "highresscale",
"contspeed",
"contangle",
"soundsid", "soundsid",
"availability", "availability",
NULL}; NULL};
@ -199,6 +203,12 @@ static int skin_get(lua_State *L)
case skin_highresscale: case skin_highresscale:
lua_pushinteger(L, skin->highresscale); lua_pushinteger(L, skin->highresscale);
break; break;
case skin_contspeed:
lua_pushinteger(L, skin->contspeed);
break;
case skin_contangle:
lua_pushinteger(L, skin->contangle);
break;
case skin_soundsid: case skin_soundsid:
LUA_PushUserdata(L, skin->soundsid, META_SOUNDSID); LUA_PushUserdata(L, skin->soundsid, META_SOUNDSID);
break; break;