diff options
Diffstat (limited to 'source/libs/asura-lib-framework/scripts/graphics/particle_system.lua')
-rw-r--r-- | source/libs/asura-lib-framework/scripts/graphics/particle_system.lua | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/source/libs/asura-lib-framework/scripts/graphics/particle_system.lua b/source/libs/asura-lib-framework/scripts/graphics/particle_system.lua deleted file mode 100644 index 065a845..0000000 --- a/source/libs/asura-lib-framework/scripts/graphics/particle_system.lua +++ /dev/null @@ -1,20 +0,0 @@ -require "graphics.sprite_renderer" - -AsuraEngine.ParticleSystem = AsuraEngine.Component.Extend("ParticleSystem") - -local ParticleSystem = AsuraEngine.ParticleSystem - -function ParticleSystem.Ctor(self, entity, def) - self.base(entity) - self.spriteRenderer = AsuraEngine.SpriteRenderer.New() -end - -function ParticleSystem.OnRenderer() - -end - -function ParticleSystem.OnUpdate(dt) - -end - -return ParticleSystem
\ No newline at end of file |