Aleksander

Results 2 comments of Aleksander

` w.createUserScene.emailInput = InputField{ bounds: rl.NewRectangle( float32(w.width/2)-100, float32(w.height/2-300), 200, 60, ), text: "", focus: false, textSize: 64, }` ` gui.TextBox(w.createUserScene.emailInput.bounds, &w.createUserScene.emailInput.text, w.createUserScene.emailInput.textSize, w.createUserScene.emailInput.focus) ` This is the tricky part, because...

```go package Application import ( gui "github.com/gen2brain/raylib-go/raygui" rl "github.com/gen2brain/raylib-go/raylib" "github.com/janicaleksander/bcs/Proto" "github.com/janicaleksander/bcs/User" "strconv" ) type CreateUserScene struct { emailInput InputField passwordInput InputField rePasswordInput InputField ruleLevelInput InputField nameInput InputField surnameInput InputField isError...