example script to separate folders

This commit is contained in:
2016-10-22 18:18:27 +07:00
parent 4326c80a68
commit 83ced8f772
19 changed files with 87 additions and 69 deletions

View File

@@ -0,0 +1,38 @@
using UnityEngine;
using System.Collections;
namespace IsoTools.Examples.Kenney {
[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!");
}
StartCoroutine(AddRndForce());
}
void Update() {
if ( _isoObject.positionZ < 0.0f ) {
Destroy(gameObject);
}
}
IEnumerator AddRndForce() {
while ( true ) {
var dx = Random.Range(-2.0f, 2.0f);
var dy = Random.Range(-2.0f, 2.0f);
_isoRigidbody.AddForce(new Vector3(dx, dy, 0.0f), ForceMode.Impulse);
yield return new WaitForSeconds(1);
}
}
}
}