Björn Ritzl

Results 598 comments of Björn Ritzl
trafficstars

Thanks. We'll add it to our backlog. We will start working on HTML5 related tasks more frequently in the coming months.

I agree. It is confusing. I'll try to fix it for the next release I make!

Yes, I'd really like to see this. We need help from someone who is fluent in both Defold and Unity though...

@Fossean1 could you please explain how it starts to work incorrectly. I took the example and set the analog_bg to 2x scale and it seems to work as expected.

Ah, ok, I see. The solution would be to somehow take the aggregated scale of the node and parent nodes into account when moving the node.

Hmm, the idea was to show async loading of images from an external source, but it seems like something with the dummyimage.com service has changed.

> I can put in a PR for this simple change Please do! > dummyimage.com is serving webp files for some images and png for others That is annoying... >...

And you are calling `monarch.show("foobar")` somewhere?

Ah, yes, I see now. The documentation and code doesn't match. I think I can add support at least for sending a transition done message when a screen is shown.

Or actually, I think it is better to use monarch.add_listener() ```lua function init(self) monarch.add_listener() end function on_message(self, message_id, message, sender) ... if message_id == monarch.SCREEN_TRANSITION_IN_FINISHED and message.screen == hash("window1") then...