imgui-node-editor
imgui-node-editor copied to clipboard
[Sample] BluePrint Sample didn't support edit text
The problem
- If I add two nodes which are message type with edit controller
- I can't change the content separately as below
More try
- I find the other samples have the same problem
You probably use the same string buffer with 2 edit texts. Please share your code, so I could be a bit more specific.
You probably use the same string buffer with 2 edit texts. Please share your code, so I could be a bit more specific.
More Info
- I just compile the blueprint-example with latest version
Thanks
- Thanks for your kind advice, I will fix it in my own project
It's because an example uses the same buffer for all nodes. You should replace it with your own buffer that's unique for each node
It's because an example uses the same buffer for all nodes. You should replace it with your own buffer that's unique for each node
Thanks!
