Tyelor
Tyelor
> Check if that fixes the issue for you. I can't tell if this affects the two color tinting though, since the Raptor example still looks the same, and I'm...
Alright, I've submitted PR #1890 with a fix for this bug. Feel free to pull my change in and then close this issue 🙂
> > static auto textField = axmol::ui::UICCTextField::create("Custom", "fonts/arial.ttf", 24); > > Is the `static` a typo? No, it was so that the reference to the textField pointer wasn't lost upon...
> I understand. Another option would have been to capture it by value in the lambda, so you wouldn't need the static: > > `mouseListener->onMouseUp = [textField] (ax::Event* event) {`...
I should note, that while this does fix the crash I was seeing, it also causes the TextField to lose its debug bounding box still. I'm not sure why that...
> @TyelorD Alternative solution to what I mentioned previously is precisely what @smilediver pointed out, which is to call `visit()`, since the drawn box should always be visible. Alright, I...