Arkistoidut
1
0
This commit is contained in:
2014-07-05 02:44:14 +04:00
vanhempi dad9c55e38
commit c9a90c8d56
3 muutettua tiedostoa jossa 20 lisäystä ja 13 poistoa

Näytä tiedosto

@@ -4,18 +4,6 @@ using UnityEngine;
namespace coa4u
{
public enum Axises
{
none,
x,
y,
z,
xy,
xz,
yz,
xyz
}
/// <summary>
/// Basic action class for subclassing. To inherit interval actions, consider using the ActionInterval as the base class.
/// </summary>

Näytä tiedosto

@@ -28,6 +28,7 @@ namespace coa4u
: base()
{
other = targetActor;
value = targetActor.transformCached.position;
}
public override ActionInstant Clone()
@@ -40,7 +41,7 @@ namespace coa4u
base.Start();
if (other != null)
{
value = other.transform.position;
value = other.transformCached.position;
}
if (locks != Axises.none)
{

Näytä tiedosto

@@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using UnityEngine;
namespace coa4u
{
public enum Axises
{
none,
x,
y,
z,
xy,
xz,
yz,
xyz
}
}