本文整理汇总了C#中Sprite.Transform方法的典型用法代码示例。如果您正苦于以下问题:C# Sprite.Transform方法的具体用法?C# Sprite.Transform怎么用?C# Sprite.Transform使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Sprite
的用法示例。
在下文中一共展示了Sprite.Transform方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ShowSprite
public void ShowSprite(Sprite sprite)
{
// Only show the sprite if it has a client:
// if(sprite.client == null)
// return;
if(sprite.billboarded)
activeBillboards.Add(sprite);
else
activeBlocks.Add(sprite);
sprite.hidden = false;
// Update the vertices:
sprite.Transform();
vertsChanged = true;
}
示例2: Transform
// Updates the vertices of a sprite based on the transform
// of its client GameObject
public void Transform(Sprite sprite)
{
sprite.Transform();
vertsChanged = true;
}
示例3: ShowSprite
public void ShowSprite(Sprite sprite)
{
// Only show the sprite if it has a client:
if(sprite.client == null)
return;
if (!sprite.m_hidden___DoNotAccessExternally)
return;
sprite.m_hidden___DoNotAccessExternally = false;
// Update the vertices:
sprite.Transform();
if (sprite.billboarded)
activeBillboards.Add(sprite);
else
activeBlocks.Add(sprite);
vertsChanged = true;
}