本文整理汇总了C#中Zone.AddCustomer方法的典型用法代码示例。如果您正苦于以下问题:C# Zone.AddCustomer方法的具体用法?C# Zone.AddCustomer怎么用?C# Zone.AddCustomer使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Zone
的用法示例。
在下文中一共展示了Zone.AddCustomer方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: CustomerDroppedInZone
public void CustomerDroppedInZone(Zone zone)
{
GameObject feedbackIcon = Instantiate(God.instance.feedbackIconPrefab, transform.position, Quaternion.identity) as GameObject;
Customer.ZoneMatchingResults result = customerModel.DroppedInZone(zone);
if (result == Customer.ZoneMatchingResults.Fail)
{
feedbackIcon.GetComponent<FeedbackIcon>().icon = FeedbackIcon.Icons.Fail;
AudioManager.instance.PlayAudioForIcon(FeedbackIcon.Icons.Fail);
GetComponent<UIDragDropItem>().enabled = false;
customerModel.Die();
return;
}
else if (result == Customer.ZoneMatchingResults.SecondBest)
{
//Should create little icon customer here?
feedbackIcon.GetComponent<FeedbackIcon>().icon = FeedbackIcon.Icons.SecondBestOption;
}
else
{
//Should create little icon customer here?
feedbackIcon.GetComponent<FeedbackIcon>().icon = FeedbackIcon.Icons.BestOption;
}
GetComponent<UIDragDropItem>().enabled = false;
zone.AddCustomer(customerModel);
AudioManager.instance.PlayAudioForIcon(feedbackIcon.GetComponent<FeedbackIcon>().icon);
// transform.parent = null;
DestroyCustomerView();
}