Difference between revisions of "Creating animations"
From XStoryPlayer Wiki
(Created page with "In progress...") |
|||
Line 1: | Line 1: | ||
− | In | + | In this tutorial you will learn how to change the standing pose animation. |
+ | |||
+ | ==Steps== | ||
+ | |||
+ | <ol> | ||
+ | <li>Make sure you have downloaded and installed the [[Using Character Packs|Character Packs]]. We are using them in this tutorial</li> | ||
+ | <li> | ||
+ | <syntaxhighlight lang="cpp"> | ||
+ | runtime | ||
+ | { | ||
+ | start_mode = TEST; | ||
+ | |||
+ | debug_sys = BASIC; | ||
+ | debug_render = NONE; | ||
+ | debug_phys = NONE; | ||
+ | debug_brain = ENABLED; | ||
+ | |||
+ | // Use this directory as second pack directory | ||
+ | // (The pack_test.bin is used as primary pack) | ||
+ | pack2 = "pack/pack_character"; | ||
+ | |||
+ | save_key = ""; | ||
+ | } | ||
+ | |||
+ | // Run this file in test mode | ||
+ | #define TEST_RUN "run_char.ini" | ||
+ | </syntaxhighlight> | ||
+ | </li> | ||
+ | </ol> |
Revision as of 10:36, 25 July 2015
In this tutorial you will learn how to change the standing pose animation.
Steps
- Make sure you have downloaded and installed the Character Packs. We are using them in this tutorial
-
runtime { start_mode = TEST; debug_sys = BASIC; debug_render = NONE; debug_phys = NONE; debug_brain = ENABLED; // Use this directory as second pack directory // (The pack_test.bin is used as primary pack) pack2 = "pack/pack_character"; save_key = ""; } // Run this file in test mode #define TEST_RUN "run_char.ini"