yopsolo.fr
Feedback after 1 week of windows 10 | YopSolo.fr
http://www.yopsolo.fr/wp/2015/08/09/feedback-after-1-week-of-windows-10
This is my portfolio, my reminder, my space of expression :). Feedback after 1 week of windows 10. 1) Update from previous windows version just work. I just have to wait my turn, evrything goes fine… and for free. I was using Win 8.1, I cannot say for win7/vista/xp to win10 update process. You can choose the number columns and size of the tiles (but not background color? When you hit Win key, the menu open and you can start typing the name of the software. You can record your desktop (.mp4). 7) “Co...
yopsolo.fr
Flash/Code trick collection | YopSolo.fr
http://www.yopsolo.fr/wp/2015/07/27/flash-code-trick-collection
This is my portfolio, my reminder, my space of expression :). A list of quick and usefull tricks :). I = -i; i = i 1; / faster i = (i -1) 1; / fastest. If the divisor is a power of 2, the modulo operation can be done with : modulus = numerator & (divisor – 1);. Mod = 131 % 4; mod = 131 and (4 - 1); / faster. Fast modulo lead to Fast parity test. IsEven = (i % 2) = 0; isEven = (i and 1) = 0; / faster. AbsX = Math.abs(x); absX = x. 31) - (x 31); / fastest. Compare squared distance instead of real distance.
yopsolo.fr
Flash | YopSolo.fr
http://www.yopsolo.fr/wp/category/flash
This is my portfolio, my reminder, my space of expression :). AS3] Delaunay triangulation effect. As3] RandomOrg RNG wrapper. AS3 RandomOrg RNG wrapper. Action Binder (first draft). Quick test of Starling Sprite3D. Quick test of Starling sprite 3D. Visualizing 100.000 digits of pi. As3]Enlarge your target, Enhance your accessibility with ColorBlindFilter. Enlarge your target, Enhance your accessibility with ColorBlindFilter. Swiffy] small game test. Small game test with Swiffy. Adobe AIR – Wand. Quick In...
yopsolo.fr
PixiJS / BlankTemplate – Adding 3D Layer to PIXI | YopSolo.fr
http://www.yopsolo.fr/wp/2015/05/30/pixi-blanktemplatejs
This is my portfolio, my reminder, my space of expression :). PixiJS / BlankTemplate – Adding 3D Layer to PIXI. I have added a 3D layer to my BlankTemplate, in this example text and ui are rendered with PIXI and 3D layer by ThreeJS. This short demo show all libs I have merged to build my FrameWork. IsMobile to detect the context. Proton for 2d particles (disabled for the moment, due to performance issue on mobile). I like the way Adobe build stage3D for Flash. Fav free softwares/online tools.
yopsolo.fr
Lab | YopSolo.fr
http://www.yopsolo.fr/wp/category/lab
This is my portfolio, my reminder, my space of expression :). AS3] Delaunay triangulation effect. As3] RandomOrg RNG wrapper. AS3 RandomOrg RNG wrapper. Away3d and Mixamo integration. Away3d and Mixamo integration test. PixiJS / BlankTemplate – Adding 3D Layer to PIXI. Adding a 3D layer to PIXI. Action Binder (first draft). Quick test of Starling Sprite3D. Quick test of Starling sprite 3D. Visualizing 100.000 digits of pi. As3]Enlarge your target, Enhance your accessibility with ColorBlindFilter. Action ...
yopsolo.fr
Actionscript | YopSolo.fr
http://www.yopsolo.fr/wp/category/actionscript
This is my portfolio, my reminder, my space of expression :). AS3] Delaunay triangulation effect. As3] RandomOrg RNG wrapper. AS3 RandomOrg RNG wrapper. ActionScript 3.0 for Visual Code. ActionScript 3.0 for Visual Code. Away3d and Mixamo integration. Away3d and Mixamo integration test. Action Binder (first draft). Visualizing 100.000 digits of pi. As3]Enlarge your target, Enhance your accessibility with ColorBlindFilter. Enlarge your target, Enhance your accessibility with ColorBlindFilter. Conditional ...
yopsolo.fr
HTML5/CSS3/JS | YopSolo.fr
http://www.yopsolo.fr/wp/category/html5
This is my portfolio, my reminder, my space of expression :). PixiJS / BlankTemplate – Gloupy. A Flappy bird game created with PixiJS / BlankTemplate. PixiJS / BlankTemplate – Adding 3D Layer to PIXI. Adding a 3D layer to PIXI. Swiffy] small game test. Small game test with Swiffy. A puzzle bubble game created with PixiJS / BlankTemplate. PakPak – MonstroKados. A same game created with PixiJS / BlankTemplate. Swiffy] Communication between Flash AS3 and Js. Web] Canvas Tips Collection. GamePad 4 Flash :).
yopsolo.fr
Quick test of Starling Sprite3D | YopSolo.fr
http://www.yopsolo.fr/wp/2015/03/23/quick-test-of-starling-sprite3d
This is my portfolio, my reminder, my space of expression :). Quick test of Starling Sprite3D. Testing Starling Sprite3D class ( Starling 1.6 ). My card object extends starling.display.Sprite3D. Modification to be usable on a surface pro 3. Removed / stage.align = StageAlign.TOP LEFT;. Added TouchPhase.HOVER to handle mouse over in desktop context if ( touch.phase = TouchPhase.HOVER touch.phase = TouchPhase.MOVED ) { / "pointer" is moving }. Fav free softwares/online tools. As3] RandomOrg RNG wrapper.
yopsolo.fr
Tutorial | YopSolo.fr
http://www.yopsolo.fr/wp/category/tutorial
This is my portfolio, my reminder, my space of expression :). How to use ANE with Flashdevelop. How to use ANE with Flashdevelop. Adobe AIR – Wand. Flash and Action Script 3, where to start? Getting started with Flash. Tutorial] Rendering soft bodies. How to build a billiard game with Flash regular display list. How to build a billiard game with Flash regular display list. Playing chiptune files with Flash. Chiptune files with Flash. AS3] Game Programming Patterns – Object Pooling. As3] Tutorial, blitting.