diff options
| author | raysan5 <raysan5@gmail.com> | 2016-08-06 16:32:46 +0200 |
|---|---|---|
| committer | raysan5 <raysan5@gmail.com> | 2016-08-06 16:32:46 +0200 |
| commit | 3b80e2c1e03e0f87d50ca8876b50a11c7df1f56f (patch) | |
| tree | 6975a142da134a2ce142faf5cd3548b24d90843c /src/rlua.h | |
| parent | d5f5f0a9302435945b730e5ec001bda39741f3c7 (diff) | |
| download | raylib-3b80e2c1e03e0f87d50ca8876b50a11c7df1f56f.tar.gz raylib-3b80e2c1e03e0f87d50ca8876b50a11c7df1f56f.zip | |
Redesigned gestures module to header-only
Diffstat (limited to 'src/rlua.h')
| -rw-r--r-- | src/rlua.h | 10 |
1 files changed, 1 insertions, 9 deletions
@@ -1313,12 +1313,6 @@ int lua_IsGestureDetected(lua_State* L) return 1; } -int lua_UpdateGestures(lua_State* L) -{ - UpdateGestures(); - return 0; -} - int lua_GetTouchPointsCount(lua_State* L) { int result = GetTouchPointsCount(); @@ -3576,10 +3570,8 @@ static luaL_Reg raylib_functions[] = { REG(SetGesturesEnabled) REG(IsGestureDetected) - //REG(ProcessGestureEvent) - REG(UpdateGestures) - REG(GetTouchPointsCount) REG(GetGestureDetected) + REG(GetTouchPointsCount) REG(GetGestureHoldDuration) REG(GetGestureDragVector) REG(GetGestureDragAngle) |
