Poodletooth-iLand/toontown/suit/GoonGlobals.py

15 lines
393 B
Python
Raw Normal View History

2015-03-03 22:10:12 +00:00
from pandac.PandaModules import Vec4
PG_COLORS = [Vec4(0.95, 0.0, 0.0, 1.0), Vec4(0.75, 0.35, 0.1, 1.0)]
SG_COLORS = [Vec4(0.0, 0.0, 0.95, 1.0), Vec4(0.35, 0.0, 0.75, 1.0)]
GOON_FORWARD = 1
GOON_REVERSE = -1
GOON_MOVIE_WALK = 0
GOON_MOVIE_STUNNED = 1
GOON_MOVIE_BATTLE = 2
GOON_MOVIE_RECOVERY = 3
GOON_MOVIE_SYNC = 4
T_TURN = 3.0
ANIM_WALK_RATE = 2.8
ANIM_TURN_RATE = 20
DEFAULT_WALK_RATE = 4