Fix Mesh, add missing functions, move gestures to file
This commit is contained in:
parent
8fa575dce2
commit
19d2f59142
6 changed files with 165 additions and 113 deletions
|
@ -139,3 +139,10 @@ func MeasureTextEx(spriteFont SpriteFont, text string, fontSize float32, spacing
|
|||
v := NewVector2FromPointer(unsafe.Pointer(&ret))
|
||||
return v
|
||||
}
|
||||
|
||||
// Shows current FPS
|
||||
func DrawFPS(posX int32, posY int32) {
|
||||
cposX := (C.int)(posX)
|
||||
cposY := (C.int)(posY)
|
||||
C.DrawFPS(cposX, cposY)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue