Cant believe I forgot drawPixel
This commit is contained in:
parent
0dd833306d
commit
5a38af8062
1 changed files with 5 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Reference in a new issue