You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
616 B
C#

using UnityEngine;
using System.Collections;
namespace RootMotion.Dynamics {
// The default prop template with no functionality
[HelpURL("http://root-motion.com/puppetmasterdox/html/page6.html")]
[AddComponentMenu("Scripts/RootMotion.Dynamics/PuppetMaster/Prop Template")]
public class PropTemplate: Prop {
protected override void OnStart() {
// Initiate stuff here.
}
protected override void OnPickUp(PropRoot propRoot) {
// Called when the prop has been picked up and connected to a PropRoot.
}
protected override void OnDrop() {
// Called when the prop has been dropped.
}
}
}