Bernhard
Bernhard
Thanks for your response, this sounds great! I haven't seen any Deflate or Gzip library for Dart yet, so you could be the first ;)
We were looking into this, but Flutter did not expose the underlying OpenGL interfaces. It would be possible to build it on top of Skia but this would have some...
Unfortunately Flutter does not expose the OpenGL API, but only their own 2D drawing API. Therefore many features of StageXL can't be migrated to Flutter. I asked many times if...
Yes, the latest version of StageXL and also the samples support Dart 2. https://github.com/bp74/StageXL_Samples Abe _King_ schrieb am Fr., 14. Sep. 2018 um 00:02 Uhr: > And I guess on...
Hi, there is an example for HiDPI images: https://github.com/bp74/StageXL_Samples/tree/master/example/basic/bitmap_data_hidpi you have to load the @1x images in your application, and the runtime will automatically load the @2x images as needed....
I will take a look at it! Thanks for reporting this issue
have you tried to import the stagexl.geom library instead of the big stagexl library? https://github.com/bp74/StageXL/blob/master/lib/src/geom.dart
Hi, thanks for the question. If a DisplayObjectContainer has many children, it may help to call the "applyCache" method on the DisplayObjectContainer. This way all children are rendered to a...
Example: https://github.com/bp74/StageXL_Samples/tree/master/example/basic/texture_atlas
Hi, thanks for the feedback. I think you are right. I've added the pan property because it is part of the Flash API, unfortunately i was not able to implement...