本文整理汇总了C#中GameMaster.GetComponent方法的典型用法代码示例。如果您正苦于以下问题:C# GameMaster.GetComponent方法的具体用法?C# GameMaster.GetComponent怎么用?C# GameMaster.GetComponent使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类GameMaster
的用法示例。
在下文中一共展示了GameMaster.GetComponent方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ProcessCommand
public override void ProcessCommand(GameMaster gameMaster, string username, string parameters)
{
GameObject playerObj = gameMaster.GetPlayerObject(username);
if (playerObj == null)
return;
if (playerObj.activeSelf == false)
{
GetComponent<TwitchIRC>().MessageChannel(username + ", can't cast spells when you're dead");
return;
}
Player playerComponent = playerObj.GetComponent<Player>();
Team team = playerComponent.getTeam();
// Check in-progress spells
for (int i = 0; i < team.inProgressSpells.Count; ++i)
{
SpellProgress s = team.inProgressSpells[i];
if (!s.IncrementSpellLine(username, parameters))
continue;
if (s.SpellComplete()) {
s.spell.Cast(team, gameMaster.GetOpposingTeam(team));
team.inProgressSpells.Remove(s);
string castingGroup = s.casterNames[0];
for (int j = 1; j < s.casterNames.Length; ++j)
castingGroup += ", " + s.casterNames[j];
gameMaster.GetComponent<TwitchIRC>().MessageChannel(s.spell.spellName + " has been cast by " + castingGroup);
}
return;
}
// Start a new spell
Spell[] spells = GetComponents<Spell>();
foreach (Spell s in spells)
{
if (s.lines[0].words != parameters)
continue;
SpellProgress newSpellProgress = new SpellProgress(s, username);
// in case of one-liners:
if (newSpellProgress.SpellComplete()) {
newSpellProgress.spell.Cast(team, gameMaster.GetOpposingTeam(team));
} else {
team.inProgressSpells.Add(newSpellProgress);
}
return;
}
string insult = insults[Random.Range(0, insults.Length)].Replace("*", username);
GetComponent<TwitchIRC>().MessageChannel(insult);
}
示例2: Start
// Use this for initialization
void Start()
{
camFocuser = Resources.Load("FocusCamera") as GameObject;
playerForms = GameObject.FindGameObjectsWithTag("Player");
gamemaster = GameObject.FindGameObjectWithTag("GameMaster").GetComponent<GameMaster>();
formManager = gamemaster.GetComponent<FormsManager>();
if(complete)
{
physical = digital = complete;
}
light.color = (doorUnlocked ? enabledColor : disabledColor);
if (door.GetComponent<Trap>() == null)
{
door.gameObject.SetActive(!doorUnlocked);
}
btn.GetComponent<DoorSwitchBtn>().setDoorSwitch(this);
}
示例3: ProcessCommand
public override void ProcessCommand(GameMaster gameMaster, string username, string parameters) {
TwitchIRC irc = gameMaster.GetComponent<TwitchIRC>();
irc.MessageChannel("Credits: (DrMrWaffles, Jaadus, SaucyDragon, DewPyrin, Flondrixa)");
}