Commit 50b3e5c1 authored by anotherguest's avatar anotherguest

Changed name for one scene script type

parent 773fd2f7
......@@ -60,7 +60,7 @@ enum {
ESceneTime = 0x5d,
ESceneTextLine = 0x5e,
ESceneTextVAdjust = 0x5f,
ESceneAnimationIndex = 0xA7,
ESceneAnimationPlayAndContinue = 0xA7,
ESceneAnimationSetting = 0xA6,
ESceneTextSetting = 0xb1,
ESceneTextSomething = 0xd9,
......@@ -142,6 +142,12 @@ class SceneFont {
};
class SceneAnimation
{
public:
};
class Scene {
private:
......
......@@ -443,10 +443,10 @@ void Scene::loadScripts (File *f) {
break;
case ESceneAnimationIndex:
case ESceneAnimationPlayAndContinue:
{
unsigned char aniIndex = f->loadChar();
LOG("ESceneAnimationIndex", aniIndex);
unsigned char playAndContinue = f->loadChar();
LOG("ESceneAnimationPlayAndContinue", playAndContinue);
}
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