Phaser3粒子编辑器
该工具旨在使用交互式创建粒子发射
在查看编辑器。
主要特点:
快速燃烧
无需运行时
易于使用
入门
首先,您要通过导出项目。 您可以通过单击项目名称旁边的菜单按钮来实现。
导出的项目结构:
用法
var config = {
type : Phaser . WEBGL ,
width : 800 ,
height : 600 ,
backgroundColor : '#262626' ,
parent : 'phaser-example' ,
scene : {
preload : preload ,
create : create ,
} ,
} ;
var game = new Phaser . Game ( config ) ;
function preload ( ) {
this . load . atlas ( 'shapes' , 'assets/shapes.png' , 'assets/shapes.json' ) ;
this . load . text ( 'particle-e
1