add pathspam in debug

This commit is contained in:
Chris Forbes
2010-09-20 19:06:43 +12:00
parent dba5adc91c
commit c5b7c43d23
2 changed files with 16 additions and 2 deletions

View File

@@ -66,17 +66,21 @@ namespace OpenRA.Traits
public int InitialFacing { get { return Info.InitialFacing; } }
int2 __fromCell, __toCell;
[Sync]
public int2 fromCell
{
get { return __fromCell; }
set { SetLocation( value, __toCell ); }
}
[Sync]
public int2 toCell
{
get { return __toCell; }
set { SetLocation( __fromCell, value ); }
}
void SetLocation( int2 from, int2 to )
{
if( fromCell == from && toCell == to ) return;