mirror of
https://github.com/BlackMATov/unity-iso-tools.git
synced 2026-01-06 03:21:15 +07:00
fix alien sample
This commit is contained in:
@@ -4,10 +4,15 @@ using System.Collections;
|
||||
namespace IsoTools.Examples {
|
||||
[RequireComponent(typeof(IsoRigidbody))]
|
||||
public class AlienBallController : MonoBehaviour {
|
||||
|
||||
|
||||
IsoObject _isoObject = null;
|
||||
IsoRigidbody _isoRigidbody = null;
|
||||
|
||||
void Start() {
|
||||
_isoObject = GetComponent<IsoObject>();
|
||||
if ( !_isoObject ) {
|
||||
throw new UnityException("AlienBallController. IsoObject component not found!");
|
||||
}
|
||||
_isoRigidbody = GetComponent<IsoRigidbody>();
|
||||
if ( !_isoRigidbody ) {
|
||||
throw new UnityException("AlienBallController. IsoRigidbody component not found!");
|
||||
@@ -15,6 +20,12 @@ namespace IsoTools.Examples {
|
||||
StartCoroutine("AddRndForce");
|
||||
}
|
||||
|
||||
void Update() {
|
||||
if ( _isoObject.positionZ < 0.0f ) {
|
||||
Destroy(gameObject);
|
||||
}
|
||||
}
|
||||
|
||||
IEnumerator AddRndForce() {
|
||||
while ( true ) {
|
||||
var dx = Random.Range(0.0f, 2.0f);
|
||||
|
||||
Reference in New Issue
Block a user