Commit 50b3e5c1 authored by anotherguest's avatar anotherguest

Changed name for one scene script type

parent 773fd2f7
...@@ -60,7 +60,7 @@ enum { ...@@ -60,7 +60,7 @@ enum {
ESceneTime = 0x5d, ESceneTime = 0x5d,
ESceneTextLine = 0x5e, ESceneTextLine = 0x5e,
ESceneTextVAdjust = 0x5f, ESceneTextVAdjust = 0x5f,
ESceneAnimationIndex = 0xA7, ESceneAnimationPlayAndContinue = 0xA7,
ESceneAnimationSetting = 0xA6, ESceneAnimationSetting = 0xA6,
ESceneTextSetting = 0xb1, ESceneTextSetting = 0xb1,
ESceneTextSomething = 0xd9, ESceneTextSomething = 0xd9,
...@@ -142,6 +142,12 @@ class SceneFont { ...@@ -142,6 +142,12 @@ class SceneFont {
}; };
class SceneAnimation
{
public:
};
class Scene { class Scene {
private: private:
......
...@@ -443,10 +443,10 @@ void Scene::loadScripts (File *f) { ...@@ -443,10 +443,10 @@ void Scene::loadScripts (File *f) {
break; break;
case ESceneAnimationIndex: case ESceneAnimationPlayAndContinue:
{ {
unsigned char aniIndex = f->loadChar(); unsigned char playAndContinue = f->loadChar();
LOG("ESceneAnimationIndex", aniIndex); LOG("ESceneAnimationPlayAndContinue", playAndContinue);
} }
break; break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment