'pixi'에 해당되는 글 3건

  1. 2017.07.06 [pixi] 파티클 온라인 에디터
  2. 2017.03.17 PIXI filters
  3. 2016.12.05 pixi 화면 스크롤 잠금 해제 방법
html52017. 7. 6. 15:38


# pixi 파티클 온라인 에디터



http://pixijs.github.io/pixi-particles-editor/#pixieDust



Posted by 차돌이라네
html52017. 3. 17. 10:29

#PIXI 필터 샘플

-소스 : https://github.com/pixijs/pixi-filters

-데모 : http://pixijs.github.io/pixi-filters/examples/

Posted by 차돌이라네
html52016. 12. 5. 14:35

#canvas 안에서 스크롤이 가능하게 하는 옵션



var renderer = PIXI.autoDetectRenderer(720, 300,{backgroundColor : 0xFFFFFF});//캔버스


renderer.plugins.interaction.autoPreventDefault = false;  <= 스크롤 가능하게 하는 옵션


Posted by 차돌이라네