LogStart() public static method

public static LogStart ( ) : void
return void
コード例 #1
0
ファイル: SetupLevel.cs プロジェクト: drguthals/CodeSpells
    void logStart()
    {
        TraceLogger.LogStart();
        ProgramLogger.LogStart();

        // log all the gnomes you can talk to and their positions
        NPCQuestTalk[] gnomes = Object.FindObjectsOfType(typeof(NPCQuestTalk)) as NPCQuestTalk[];
        foreach (NPCQuestTalk gnome in gnomes)
        {
            if (gnome.name.Contains("Gnome"))
            {
                TraceLogger.LogKV("gnome", gnome.name + ", " + gnome.transform.position);
            }
        }
    }