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_TPoseAsset = null;
                return(true);
            }
            else
            {
                return(false);
            }
        }
		//! 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_TPoseAsset = null;
				return true;
			} else {
				return false;
			}
		}