Esempio n. 1
0
 /*!
  * @param url		URL to 3D animation file to load.
  * @param target	name of avatar/garment to apply animation to
  *					if null, the current avatar is assumed
  * Load a 3D animation content file (BVH, Havok or Vixen format)
  * and apply it to the named avatar or garment. The name of the
  * animation is the base name of the file without the extension.
  *
  * @see PlayAnimation PauseAnimation
  */
 public void LoadAnimation(string url, string target)
 {
     scene.LoadAnimation(GetMediaPath(url), target);
 }
Esempio n. 2
0
 /*!
  * @param url	URL to 3D animation file to load.
  * Load a 3D animation content file (BVH or Vixen format)
  * and apply it to the current avatar.
  *
  * @see PlayAnimation PauseAnimation
  */
 public void LoadAnimation(string url)
 {
     scene.LoadAnimation(GetMediaPath(url));
 }