This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function init(self) | |
-- BEGIN STATE DATA | |
local states = {} | |
states.AbeStandToWalk = { | |
NextAnimation ='AbeWalking', | |
NextAnimationFrameIndex = 0, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function init(self) | |
-- BEGIN STATE DATA | |
local states = {} | |
states.AbeStandToWalk = { | |
NextAnimation ='AbeWalking', | |
NextAnimationFrameIndex = 0, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from __future__ import print_function | |
import os, stat | |
import sys | |
from collections import namedtuple | |
from shutil import move | |
import fileinput | |
import os | |
import os.path | |
import xml.etree.ElementTree as ET |