Search the Community
Showing results for tags 'BSON'.
-
Just queuing up the discussion on Binary Object Notation for Javascript as a potential PIXI loader in the current future.. http://bsonspec.org/ MongoDB is a good example of an existing architecture that uses it as both a file system and for content delivery. Additionally, I'm reviewing css base64string images and css-shaders in combination WebGL here is a 2 year old git on the css-shader route. https://github.com/niklasvh/WebGL-CSS-Shaders/blob/gh-pages/src/css-shaders.js if nothing else it is a good example of how you can extract data from css. Thus a PIXI.CSSLoader is certainly possible.. and shouldn't even require ajax if the base64string representation of images are supplanted into css selectors & files. You could of course use ajax against 'url' style declaration when present. Additionally, I've been trying to review SVG support.. I've been following and reviewing the Adobe WebPlatform team of and on since they acquired RaphaelJS developer Dmitry Baranovskiy.. who may have been instrumental in the following Javascript Library Snap.svg. http://snapsvg.io/ (actually I just read the about page and it is indeed his creation) Snap.svg doesn't seem to require the use of Canvas or WebGL.. instead it uses the svg element and likely css transformation and transitioning.. It seems like a pretty good standalone library. For the purpose of PIXI Loading.. it's the Matrix (in context of SVG) and the general SVG object portions of the code that are relevant. There is a specific reference on the homepage to making svg spritesheets.. so that's of interest as well.