26 lines
544 B
C#
26 lines
544 B
C#
|
using UnityEngine;
|
|||
|
namespace RayFire
|
|||
|
{
|
|||
|
public class AddRigidComponent : MonoBehaviour
|
|||
|
{
|
|||
|
|
|||
|
public GameObject targetObject;
|
|||
|
|
|||
|
// Update is called once per frame
|
|||
|
void Update()
|
|||
|
{
|
|||
|
|
|||
|
if (Input.GetKeyDown ("space") == true)
|
|||
|
{
|
|||
|
if (targetObject != null)
|
|||
|
{
|
|||
|
RayfireRigid rigidComponent = targetObject.AddComponent<RayfireRigid>();
|
|||
|
rigidComponent.simTp = SimType.Dynamic;
|
|||
|
rigidComponent.dmlTp = DemolitionType.Runtime;
|
|||
|
rigidComponent.objTp = ObjectType.Mesh;
|
|||
|
rigidComponent.Initialize();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|