mirror of
https://github.com/BlackMATov/unity-iso-tools.git
synced 2025-12-16 14:09:00 +07:00
namespaces fix
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
|
|
||||||
namespace IsoTools { namespace Examples {
|
namespace IsoTools.Examples {
|
||||||
public class CircleFly : MonoBehaviour {
|
public class CircleFly : MonoBehaviour {
|
||||||
public float flyRadius = 150.0f;
|
public float flyRadius = 150.0f;
|
||||||
public float flySpeed = 1.0f;
|
public float flySpeed = 1.0f;
|
||||||
@@ -22,4 +22,4 @@ namespace IsoTools { namespace Examples {
|
|||||||
_start_pos.z);
|
_start_pos.z);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}} // namespace IsoTools::Examples
|
} // namespace IsoTools.Examples
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
|
|
||||||
namespace IsoTools { namespace Examples {
|
namespace IsoTools.Examples {
|
||||||
public class IsoEchoListener : MonoBehaviour {
|
public class IsoEchoListener : MonoBehaviour {
|
||||||
void OnIsoTriggerEnter(IsoCollider iso_collider) {
|
void OnIsoTriggerEnter(IsoCollider iso_collider) {
|
||||||
Debug.LogFormat(
|
Debug.LogFormat(
|
||||||
@@ -27,4 +27,4 @@ namespace IsoTools { namespace Examples {
|
|||||||
gameObject.name, iso_collision.gameObject.name);
|
gameObject.name, iso_collision.gameObject.name);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}} // namespace IsoTools::Examples
|
} // namespace IsoTools.Examples
|
||||||
Reference in New Issue
Block a user