Building Scripting Skills

  • Scripts as Behavior Components 
  • Variables and Functions
    • Link: variables-and-functions (5:52)
    • Notes:
      – scripts being used as behaviour components can do many things, such as change the color of  an object
      – Most examples of scripts that you will find online are either JavaScript or C#
  • Conventions and Syntax
    • Link: conventions-and-syntax (4:10)
    • Notes:
      – the dots are allow you to separate or access the different compounds
      – Semi-colon is used to terminate statements
      – You dont NEED to indent code, but it is essential to make code that can be read easily. Spacing out the code with indents can help with finding errors in the code —(–o_o–)/
      – use // to leave yourself a comment .-.
  • C# vs JS syntax
  • IF Statements
  • Loops
    • Link: loops (5:33)
    • Notes:
  • Classes

Leave a Reply

Your email address will not be published. Required fields are marked *