本文整理汇总了C#中UISprite.GetUnit方法的典型用法代码示例。如果您正苦于以下问题:C# UISprite.GetUnit方法的具体用法?C# UISprite.GetUnit怎么用?C# UISprite.GetUnit使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类UISprite
的用法示例。
在下文中一共展示了UISprite.GetUnit方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: InsertPage
public int InsertPage(int index, Panel panel)
{
if (index < 0 || index > this.pageCount)
{
throw new ArgumentOutOfRangeException ("index");
}
if (panel == null)
{
throw new ArgumentNullException ("panel");
}
panel.Y = 0f;
panel.Width = this.Width;
panel.Height = this.Height;
if (index > 0)
{
this.panelContainer.InsertChildBefore (panel, this.panelList [index - 1]);
}
else
{
this.panelContainer.AddChildFirst (panel);
}
this.panelList.Insert (index, panel);
this.updatePagePos ();
UISprite uISprite = new UISprite (1);
uISprite.ShaderType = ShaderType.Texture;
uISprite.Image = this.normalImage;
UISpriteUnit unit = uISprite.GetUnit (0);
unit.X = 24f * (float)this.pageCount;
unit.Y = 0f;
unit.Width = 24f;
unit.Height = 24f;
this.sprtContainer.BaseRootUIElement.AddChildLast (uISprite);
this.sprtList.Add (uISprite);
this.pageCount++;
if (this.pageIndex >= index || this.pageIndex == -1)
{
this.pageIndex++;
this.panelContainer.X = -(this.Width * (float)this.pageIndex);
}
this.UpdateSprite ();
return index;
}