本文整理汇总了C#中Container.GetItemAt方法的典型用法代码示例。如果您正苦于以下问题:C# Container.GetItemAt方法的具体用法?C# Container.GetItemAt怎么用?C# Container.GetItemAt使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Container
的用法示例。
在下文中一共展示了Container.GetItemAt方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: SetItemsParent
public static void SetItemsParent(Container cn, Transform Parent)
{
for (int i =0; i<=cn.MaxCapacity ();i++)
{
string ItemName=cn.GetItemAt(i);
if (ItemName != "")
{
GameObject item = GameObject.Find (cn.GetItemAt(i));
if (item != null)
{
item.transform.parent=Parent;
if (item.GetComponent<Container>()!=null)
{
Container.SetItemsParent(item.GetComponent<Container>(),Parent);
}
}
}
}
}
示例2: GetFreeSlot
public static int GetFreeSlot(Container cn)
{
//Returns an available slot on the current container.
for (int i=0;i<=cn.MaxCapacity();i++)
{
if (cn.GetItemAt (i)=="")
{
return i;
}
}
return -1;
}
示例3: SetItemsPosition
public static void SetItemsPosition(Container cn, Vector3 Position)
{
for (int i =0; i<=cn.MaxCapacity();i++)
{
string ItemName=cn.GetItemAt(i);
if (ItemName != "")
{
GameObject item = GameObject.Find (cn.GetItemAt(i));
if (item!=null)
{
item.transform.position=Position;
if (item.GetComponent<Container>()!=null)
{
Container.SetItemsPosition(item.GetComponent<Container>(),Position);
}
}
}
}
}
示例4: SortContainer
public static void SortContainer(Container cn)
{
//Debug.Log ("Sorting container");
//Flattens the contents of a container so that they occupy the first slots
int currFreeSlot=-1;
string ItemName;
bool GetNextSlot=true;
for (int i=0;i<=cn.MaxCapacity();i++)
{
//Find the first free slot
if (GetNextSlot==true)
{
for (int j=0;j<=cn.MaxCapacity();j++)
{
ItemName=cn.GetItemAt(j);
if (ItemName=="")
{
currFreeSlot=j;
GetNextSlot=false;
break;
}
}
}
if ((i>currFreeSlot) &&(currFreeSlot!=-1))
{
ItemName=cn.GetItemAt(i);
if (ItemName!="")
{//Move this item to the free slot
cn.RemoveItemFromContainer(i);
cn.AddItemToContainer(ItemName,currFreeSlot);
GetNextSlot=true;
currFreeSlot=-1;
}
}
}
}
示例5: SetPickedUpFlag
public static void SetPickedUpFlag(Container cn, bool NewValue)
{
//Recursivly sets the picked up flag on all items in the container and all sub-container contents.
for (int i =0; i<=cn.MaxCapacity();i++)
{
string ItemName=cn.GetItemAt(i);
if (ItemName != "")
{
GameObject item = GameObject.Find (cn.GetItemAt(i));
if (item !=null)
{
if (item.GetComponent<ObjectInteraction>()!=null)
{
item.GetComponent<ObjectInteraction>().PickedUp=NewValue;
if (item.GetComponent<ObjectInteraction>().GetItemType()==ObjectInteraction.A_PICK_UP_TRIGGER)
{//Special case
item.GetComponent<a_pick_up_trigger>().Activate();
//if (item==null)
//{//Use trigger is no more.
cn.RemoveItemFromContainer(i);
//}
}
else if (item.GetComponent<Container>()!=null)
{
Container.SetPickedUpFlag(item.GetComponent<Container>(),NewValue);
}
}
}
}
}
}