Minor fixes

This commit is contained in:
2014-07-05 02:44:14 +04:00
parent dad9c55e38
commit c9a90c8d56
3 changed files with 20 additions and 13 deletions

View File

@@ -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>

View File

@@ -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)
{

View File

@@ -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
}
}