Jump to content

hyzhak

Members
  • Posts

    6
  • Joined

  • Last visited

Everything posted by hyzhak

  1. In my case I need to recreate WebGLRenderer on new Canvas. Also I've deleted previous WebGLRenderer before. After some experiments I've found that you need to clear some cache objects in PIXI.js before recreate WebGLRenderer, to avoid caching of previous 3D context in objects. Here is solution: //clear some cached objects in Pixi.jsPIXI._batchs.length = 0;PIXI.TextureCache = {};PIXI.BaseTextureCache = {}; https://gist.github.com/Hyzhak/5747824 PS: But anyway I'm still having some strange bug with shuffling of sequence of rendering DisplayObjects. It's look like after recreation of WebGLRenderer hierarchy of DisplayObjects breaks. PPS: I've tested same use case on CanvasRenderer and everything works fine.
  2. Cool but I think it's better to separate architectural frameworks like Crafty, LimeJS, Cocos2d-X and rendering engines common propose like EaselJS, Three.js. Also I'm developing free modular game engine (http://darlingjs.github.io) it's architectural framework. How it can appear on a list?
  3. @IvanK anyway all mature engine has particles system (Unity3D, Unreal ENgine, Cryengine, ...) so lack of it look a little strange.
  4. Please recommend flexible particle system engine. That can easily use with custom visualization. Plan to use with game engine https://github.com/darlingjs/darlingjs
  5. developing of flexible game engine http://darlingjs.github.io

  6. Is there any opensource library to use xfl adobe flash animation file (xml) in javascript to get animation in canvas? Not through sprite sheet, but by using transformation?
×
×
  • Create New...