diff options
author | chai <chaifix@163.com> | 2019-01-31 09:06:15 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2019-01-31 09:06:15 +0800 |
commit | c581dfbf1e849f393861d15e82aa6446c0c1c310 (patch) | |
tree | 2df779ba98acdd04a4b52f6bff0de143dfba4600 /Source/Asura.Framework/Filesystem | |
parent | fc1713e9df3ae8db6e612610023e7bd5f6b6f5fe (diff) |
*misc
Diffstat (limited to 'Source/Asura.Framework/Filesystem')
5 files changed, 0 insertions, 45 deletions
diff --git a/Source/Asura.Framework/Filesystem/Loader.lua b/Source/Asura.Framework/Filesystem/Loader.lua deleted file mode 100644 index c7b8b8a..0000000 --- a/Source/Asura.Framework/Filesystem/Loader.lua +++ /dev/null @@ -1,12 +0,0 @@ --- Assets loaders -AsuraEngine.Loader = {} -local Loader = AsuraEngine.Loader -Loader.Loaders = {} - -function Loader.New(type) - assert(Loader.Loaders[type] == nil) - local loader = {} - Loader[type] = loader - return loader -end - diff --git a/Source/Asura.Framework/Filesystem/animation_loader.lua b/Source/Asura.Framework/Filesystem/animation_loader.lua deleted file mode 100644 index c6808c0..0000000 --- a/Source/Asura.Framework/Filesystem/animation_loader.lua +++ /dev/null @@ -1,10 +0,0 @@ -require "AnimationManager" -require "Animation" - -local loader = AsuraEngine.Loader.New("animation") -local manager = AsuraEngine.AnimationManager -local Animation = AsuraEngine.Animation - -function AnimationLoader.Load(asset) - local animation = AsuraEngine.Class() -end
\ No newline at end of file diff --git a/Source/Asura.Framework/Filesystem/material_loader.lua b/Source/Asura.Framework/Filesystem/material_loader.lua deleted file mode 100644 index 2c2058e..0000000 --- a/Source/Asura.Framework/Filesystem/material_loader.lua +++ /dev/null @@ -1,7 +0,0 @@ -require "MaterialManager" - -local loader = AsuraEngine.Loader.New("material") - -function loader.Load(asset) - -end
\ No newline at end of file diff --git a/Source/Asura.Framework/Filesystem/path_loader.lua b/Source/Asura.Framework/Filesystem/path_loader.lua deleted file mode 100644 index 8618c03..0000000 --- a/Source/Asura.Framework/Filesystem/path_loader.lua +++ /dev/null @@ -1,9 +0,0 @@ -require "Path/PathManager" - -local loader = AsuraEngine.Loader.New("path") - -function loader.Load(asset) - if asset.type ~= "path" then - return nil - end -end
\ No newline at end of file diff --git a/Source/Asura.Framework/Filesystem/scene_loader.lua b/Source/Asura.Framework/Filesystem/scene_loader.lua deleted file mode 100644 index c0a951f..0000000 --- a/Source/Asura.Framework/Filesystem/scene_loader.lua +++ /dev/null @@ -1,7 +0,0 @@ -local Scene = require "scene" - -local loader = AsuraEngine.Loader.New("scene") - -function loader.Load(asset) - -end
\ No newline at end of file |