Cant believe I forgot drawPixel

This commit is contained in:
Ryan Voots 2016-04-24 14:02:14 -07:00
parent 0dd833306d
commit 5a38af8062

View file

@ -15,7 +15,11 @@ static int matrixpanel_fillscreen (lua_State *L) {
}
static int matrixpanel_drawpixel (lua_State *L) {
return 0;
float x = luaL_checkint(L, 1);
float y = luaL_checkint(L, 2);
float c = luaL_checkint(L, 3);
matrixpanel.drawPixel(x, y, c);
return 0;
}
static int matrixpanel_colorHSV (lua_State *L) {