Search Unity

Need a guide to help with an inexplicable problem

Discussion in 'Scripting' started by San_Holo, Oct 21, 2014.

  1. San_Holo

    San_Holo

    Joined:
    Sep 26, 2014
    Posts:
    152
    EDIT: Thank you chaps for the advice, problem sorted hopefully, cheers
     
    Last edited: Oct 22, 2014
  2. numberkruncher

    numberkruncher

    Joined:
    Feb 18, 2012
    Posts:
    953
    Your method "awake" should be named "Awake" since identifiers are case sensitive.
     
    San_Holo likes this.
  3. zDemonhunter99

    zDemonhunter99

    Joined:
    Apr 23, 2014
    Posts:
    478
    ^^^
    Code (CSharp):
    1. void Awake()
    2. {
    3.   // Your code here
    4. }
     
    San_Holo likes this.