本文整理汇总了C#中Sim.SwitchToOutfitWithoutSpin方法的典型用法代码示例。如果您正苦于以下问题:C# Sim.SwitchToOutfitWithoutSpin方法的具体用法?C# Sim.SwitchToOutfitWithoutSpin怎么用?C# Sim.SwitchToOutfitWithoutSpin使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Sim
的用法示例。
在下文中一共展示了Sim.SwitchToOutfitWithoutSpin方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ChangeToCareerOutfit
public static void ChangeToCareerOutfit(Sim sim)
{
//Does the sim have an career outfit
//ArrayList list = sim.SimDescription.GetOutfits(OutfitCategories.Career);
//CommonMethodsOFBBistroSet.PrintMessage(list.Count.ToString());
//if (list == null || (list != null && list.Count == 0))
//{
// CommonMethodsOFBBistroSet.PrintMessage(sim.FullName + " Doesn't have career outfit");
// sim.SwitchToOutfitWithoutSpin(OutfitCategories.Career);
// sim.SimDescription.AddOutfit(sim.CurrentOutfit, OutfitCategories.Career);
//}
//else
{
sim.SwitchToOutfitWithoutSpin(OutfitCategories.Career);
}
}
示例2: SendEverybodyHome
public static void SendEverybodyHome(OFBOven oven, Sim cheff)
{
try
{
if (cheff != null)
{
cheff.PopPosture();
cheff.InteractionQueue.CancelAllInteractions();
cheff.SwitchToOutfitWithoutSpin(OutfitCategories.Everyday);
if (!cheff.IsActiveSim)
Sim.MakeSimGoHome(cheff, false);
}
//Send waiters home
if (oven.Waiters != null)
{
foreach (ulong id in oven.Waiters)
{
SimDescription simDescription = CommonMethodsOFBBistroSet.ReturnSim(id); ;
if (simDescription != null && simDescription.CreatedSim != null)
{
simDescription.CreatedSim.PopPosture();
simDescription.CreatedSim.InteractionQueue.CancelAllInteractions();
simDescription.CreatedSim.SwitchToOutfitWithoutSpin(OutfitCategories.Everyday);
if (!simDescription.CreatedSim.IsActiveSim)
{
Sim.MakeSimGoHome(simDescription.CreatedSim, false);
}
}
else
{
CommonMethodsOFBBistroSet.PrintMessage("Couldn't send waiter home");
}
}
}
}
finally
{
oven.Waiters = new List<ulong>();
}
}
示例3: SwitchToProperClothing
public static void SwitchToProperClothing(Sim sim, Lot.MetaAutonomyType venueType)
{
SimIFace.CAS.OutfitCategories outfitType = SimIFace.CAS.OutfitCategories.Everyday;
if (venueType == Lot.MetaAutonomyType.CocktailLoungeAsian || venueType == Lot.MetaAutonomyType.CocktailLoungeCelebrity || venueType == Lot.MetaAutonomyType.CocktailLoungeVampire)
{
outfitType = SimIFace.CAS.OutfitCategories.Formalwear;
}
sim.SwitchToOutfitWithoutSpin(Sim.ClothesChangeReason.GoingToWork, outfitType);
}
示例4: SwitchToOutfitWithoutSpin
private static bool SwitchToOutfitWithoutSpin(Sim ths, OutfitCategories category, int index)
{
if (!ths.AcceptableClothingCategoryForAge(category))
{
return false;
}
if (!ths.SwitchToOutfitTraitTest(Sim.ClothesChangeReason.Force, ref category))
{
return false;
}
SimOutfit outfit = CASParts.GetOutfit(ths.mSimDescription, new CASParts.Key(category, index), false);
if ((outfit == null) || (outfit.Key == ResourceKey.kInvalidResourceKey))
{
return false;
}
if (ths.SimDescription.IsSupernaturalForm)
{
if (ths.BuffManager.TransformBuffInst != null)
{
if (ths.BuffManager.TransformBuffInst.GenerateTransformOutfit(outfit))
{
int superIndex = ths.SimDescription.GetOutfitCount(OutfitCategories.Supernatural) - 0x1;
outfit = CASParts.GetOutfit(ths.SimDescription, new CASParts.Key(OutfitCategories.Supernatural, superIndex), false);
}
}
}
ths.SwitchToOutfitWithoutSpin(category, outfit, index);
return true;
}
示例5: SwitchToProperClothing
private void SwitchToProperClothing(Lot.MetaAutonomyType venueType, Sim sim, bool spin)
{
SimIFace.CAS.OutfitCategories outfitType = SimIFace.CAS.OutfitCategories.Everyday;
if (venueType == Lot.MetaAutonomyType.CocktailLoungeAsian || venueType == Lot.MetaAutonomyType.CocktailLoungeCelebrity || venueType == Lot.MetaAutonomyType.CocktailLoungeVampire)
{
outfitType = SimIFace.CAS.OutfitCategories.Formalwear;
}
if (spin)
{
sim.SwitchToOutfitWithSpin(Sim.ClothesChangeReason.GoingToWork, outfitType);
if (Message.Sender.IsDebugging())
{
Message.Sender.Debug(this, "Role clothing change request (with spin) for "
+ mSim.FullName + " " + outfitType.ToString());
}
}
else
{
sim.SwitchToOutfitWithoutSpin(Sim.ClothesChangeReason.GoingToWork, outfitType);
if (Message.Sender.IsDebugging())
{
Message.Sender.Debug(this, "Role clothing change request (without spin) for "
+ mSim.FullName + " " + outfitType.ToString());
}
}
}