this is the correct lua convention going forword, no snake case

This commit is contained in:
adelikat 2020-04-01 11:49:20 -05:00
parent 07e7a83243
commit f369291606
1 changed files with 1 additions and 1 deletions

View File

@ -363,7 +363,7 @@ namespace BizHawk.Client.EmuHawk
}
[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) {
var transformed = ClientApi.TransformPoint(new Point(x, y));
var table = Lua.NewTable();