本文整理汇总了C#中Info.DisableAbilityButtons方法的典型用法代码示例。如果您正苦于以下问题:C# Info.DisableAbilityButtons方法的具体用法?C# Info.DisableAbilityButtons怎么用?C# Info.DisableAbilityButtons使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Info
的用法示例。
在下文中一共展示了Info.DisableAbilityButtons方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: UseCatapult
/// <summary>
/// Uses the Catapult ability.
/// </summary>
public void UseCatapult( Piece p, Tile t, Info info )
{
//Store the two tiles being jumped
Tile mid1 = null;
Tile mid2 = null;
for ( int i = 0; i < t.neighbors.Length; i++ )
{
//Find middle tiles
if ( p.currentTile.neighbors [ i ] != null && p.currentTile.neighbors [ i ].neighbors [ i ] != null && p.currentTile.neighbors [ i ].neighbors [ i ].neighbors [ i ] != null && p.currentTile.neighbors [ i ].neighbors [ i ].neighbors [ i ] == t )
{
mid1 = p.currentTile.neighbors [ i ];
mid2 = p.currentTile.neighbors [ i ].neighbors [ i ];
break;
}
}
//Mark that it is no longer the beginning of a turn
info.beginningOfTurn = false;
info.DisableAbilityButtons ( );
//Check if piece is friendly on the first tile
if ( mid1.state == TileState.PotentialCapture )
mid1.CapturePiece ( mid1 );
//Check if piece is friendly on the second tile
if ( mid2.state == TileState.PotentialCapture )
mid2.CapturePiece ( mid2 );
//Clear board
info.ResetBoardColor ( );
info.BringPieceToFront ( p );
//Animate catapult
Sequence s = DOTween.Sequence ( )
.Append ( p.transform.DOMove ( t.transform.position, ANIMATE_TIME * 2 ) )
.Insert ( 0, p.transform.DOScale ( 4, ANIMATE_TIME ).SetLoops ( 2, LoopType.Yoyo ) )
.OnComplete ( () =>
{
//Update tile references
p.currentTile.currentPiece = null;
p.currentTile = t;
t.currentPiece = p;
//End turn
info.EndTurn ( );
} );
}
示例2: UseTeleport
/// <summary>
/// Uses the Teleport ability to instantly move a piece a few spaces away.
/// </summary>
public void UseTeleport( Piece p, Tile t, Info info )
{
//Change the tile references
p.currentTile.currentPiece = null;
p.currentTile = t;
t.currentPiece = p;
//Clear board
info.ResetBoardColor ( );
//Mark that it is no longer the beginning of a turn
info.beginningOfTurn = false;
info.DisableAbilityButtons ( );
//Animate teleport
Sequence s = DOTween.Sequence ( )
.Append ( p.sprite.DOFade ( 0, ANIMATE_TIME ) )
.AppendCallback ( () =>
{
//Move piece
p.Move ( t.transform.position );
} )
.Append ( p.sprite.DOFade ( 1, ANIMATE_TIME ) )
.OnComplete ( () =>
{
//End turn
info.EndTurn ( );
} );
}
示例3: UseTorus
/// <summary>
/// Uses the Torus ability to allow the piece's movement to wrap around the board.
/// </summary>
public void UseTorus( Piece p, Tile t, Info info )
{
//Set previous tile
p.prevTile = p.currentTile;
//Movement information
float xMove;
float yMove;
float reentry = 1.5f;
float delay = 0.1f;
bool isTorusJump = t.isTorusJump;
Sequence s = DOTween.Sequence ( );
//Mark that it is no longer the beginning of a turn
info.beginningOfTurn = false;
info.DisableAbilityButtons ( );
//Clear board
info.ResetBoardColor ( );
info.BringPieceToFront ( p );
//Check tile position
if ( p.currentTile.transform.position.x != t.transform.position.x )
{
//Mark that the movement is forward
xMove = 1.3f;
yMove = 0.75f;
}
else
{
//Mark that the movement is strictly side to side
xMove = 0;
yMove = 1.5f;
}
//Check if the move is a jump
if ( isTorusJump )
{
//Find middle tile
Tile mid = null;
bool isTorusFirst = false;
for ( int i = 0; i < t.neighbors.Length; i++ )
{
//Check for selected tile
if ( p.currentTile.neighbors [ i ] != null && p.currentTile.neighbors [ i ].torusNeighbors [ i ] != null && p.currentTile.neighbors [ i ].torusNeighbors [ i ] == t )
{
//Store middle tile
mid = p.currentTile.neighbors [ i ];
isTorusFirst = false;
break;
}
else if ( p.currentTile.torusNeighbors [ i ] != null && p.currentTile.torusNeighbors [ i ].neighbors [ i ] != null && p.currentTile.torusNeighbors [ i ].neighbors [ i ] == t )
{
//Store middle tile
mid = p.currentTile.torusNeighbors [ i ];
isTorusFirst = true;
break;
}
}
//Check if torus is first
if ( isTorusFirst )
{
//Determine starting tile position
if ( p.currentTile.transform.position.y < 0 )
yMove *= -1;
else
reentry *= -1;
if ( p.currentTile.transform.position.x > t.transform.position.x )
xMove *= -1;
//Animate torus
s.Append ( p.transform.DOMove ( new Vector3 ( p.transform.position.x + xMove, p.transform.position.y + yMove, p.transform.position.y ), ANIMATE_TIME ) )
.Insert ( 0, p.sprite.DOFade ( 0, ANIMATE_TIME ) )
.Append ( p.transform.DOMove ( new Vector3 ( mid.transform.position.x, mid.transform.position.y + reentry, mid.transform.position.z ), 0 ) )
.AppendCallback ( () =>
{
//Check for capture
if ( mid.currentPiece.owner == info.opponent )
mid.CapturePiece ( mid );
} )
.AppendInterval ( delay );
//Check middle tile position
if ( mid.transform.position.x != t.transform.position.x )
s.Append ( p.transform.DOMove ( mid.transform.position, ANIMATE_TIME ) );
else
s.Append ( p.transform.DOMove ( t.transform.position, ANIMATE_TIME * 2 ) );
//Finish torus animation
s.Insert ( ANIMATE_TIME + delay, p.sprite.DOFade ( 1, ANIMATE_TIME ) )
.Append ( p.transform.DOMove ( t.transform.position, ANIMATE_TIME ) );
}
else
{
//Determine middle tile position
if ( mid.transform.position.y < 0 )
//.........这里部分代码省略.........