Todor Imreorov

Results 497 comments of Todor Imreorov

Yes unfortunately because of how the extensions in Gdevelop work, the external library is part of the extension itself

`renderer.plugins.tilemap = new TileRenderer(renderer);` I can access PIXI's global object in gdevelop, but have no idea how to get to the renderer. PIXI.Renderer? thats a constructor, how do you get...

I think it would be better if I get the renderer from gdevelop itself

@ivanpopelyshev I managed to redister it as a plugin ![image](https://user-images.githubusercontent.com/6495061/126539890-0f5fa56d-7ab5-4fff-82d7-66a4c06252a6.png) however now there is another problem ![image](https://user-images.githubusercontent.com/6495061/126538202-f1d10026-bf4b-472a-a56a-0eac9e179b7e.png) is this because our version of pixi on GD doesnt have utils? I...

@ivanpopelyshev I might have discovered a bug. utils appears to be in utils.utils for that line. Changing it to ``` this.indexBuffer.update(utils.utils.createIndicesForQuads(size, settings.use32bitIndex ? new Uint32Array(size * 6) : undefined)); ```...

here is my wip pr btw https://github.com/4ian/GDevelop/pull/2828

could be a better question for @4ian , but I think YES. I can find many references to it https://github.com/4ian/GDevelop/search?q=PIXI.Graphics

@ivanpopelyshev @4ian interestingly its `utils.utils.createIndicesForQuads `when I try to use the library from the IDE and its `utils.createIndicesForQuads `when I do it from the runtime

We plan to write a parser for gdevelop to do this bit and then pass it to pixi-tilemap to render. It will likely be added to the existing tiled json...

Thank you for clarifying and for the invite. On that I will try to put up my example project today with hope that others here will hop on it and...