this is the correct lua convention going forword, no snake case
This commit is contained in:
parent
07e7a83243
commit
f369291606
|
@ -363,7 +363,7 @@ namespace BizHawk.Client.EmuHawk
|
||||||
}
|
}
|
||||||
|
|
||||||
[LuaMethodExample("local newY = client.transform_point( 32, 100 ).y;")]
|
[LuaMethodExample("local newY = client.transform_point( 32, 100 ).y;")]
|
||||||
[LuaMethod("transform_point", "Transforms a point (x, y) in emulator space to a point in client space")]
|
[LuaMethod("transformPoint", "Transforms a point (x, y) in emulator space to a point in client space")]
|
||||||
public LuaTable TransformPoint(int x, int y) {
|
public LuaTable TransformPoint(int x, int y) {
|
||||||
var transformed = ClientApi.TransformPoint(new Point(x, y));
|
var transformed = ClientApi.TransformPoint(new Point(x, y));
|
||||||
var table = Lua.NewTable();
|
var table = Lua.NewTable();
|
||||||
|
|
Loading…
Reference in New Issue