Esempio n. 1
0
    // Use this for initialization
    void Start()
    {
        scribblers = new List <GrabbableScribbler>();

        ScribblerSortingPuzzle puzzle = GetComponentInParent <ScribblerSortingPuzzle>();

        puzzle.AddScribblerHolder(this);
    }
Esempio n. 2
0
    void Start()
	{
		puzzle = GetComponentInParent<ScribblerSortingPuzzle>();
		puzzle.AddScribbler(this);
	}
Esempio n. 3
0
 void Start()
 {
     puzzle = GetComponentInParent <ScribblerSortingPuzzle>();
     puzzle.AddScribbler(this);
 }