[help] - Is there anyway to display a textfield widget on a scence.
-
While I am practicing build scene app, I had a problem I cant figure out. I use ShapeNode to display a circle on scene, and a LableNode to display its name. I hope when i touch on that name, I can retype a new name on spot. But I can’t insert a textfield control which come from ui module as a child of my scene class.
Is it impossible to to that? thanks for any suggestions.
-
@Jians when your scene is presented (by run), it's View is accessible by self.view and you can add some ui objects by self.view.add_subview(object, like a TextField)
-
It works, thank you very much.