def RegisterEmotionAnis(path): actionPath = path + "action/" weddingPath = path + "wedding/" __RegisterSharedEmotionAnis(chr.MOTION_MODE_GENERAL, actionPath) __RegisterSharedEmotionAnis(chr.MOTION_MODE_WEDDING_DRESS, actionPath) chrmgr.SetPathName(weddingPath) chrmgr.RegisterMotionMode(chr.MOTION_MODE_WEDDING_DRESS) chrmgr.RegisterMotionData(chr.MOTION_MODE_WEDDING_DRESS, chr.MOTION_WAIT, "wait.msa") chrmgr.RegisterMotionData(chr.MOTION_MODE_WEDDING_DRESS, chr.MOTION_WALK, "walk.msa") chrmgr.RegisterMotionData(chr.MOTION_MODE_WEDDING_DRESS, chr.MOTION_RUN, "walk.msa")
def __RegisterSharedEmotionAnis(mode, path): chrmgr.SetPathName(path) chrmgr.RegisterMotionMode(mode) for key, val in ANI_DICT.items(): chrmgr.RegisterMotionData(mode, key, val)