Exemple #1
0
        //! Loads the t pose of the character.
        public bool LoadTPoseFromFile(string filename_with_path)
        {
            TPose new_tpose = new TPose();

            if (new_tpose.loadFromFile(filename_with_path))
            {
                m_tpose       = new_tpose;
                m_tpose_asset = null;
                return(true);
            }
            else
            {
                return(false);
            }
        }