SlideShare uma empresa Scribd logo
1 de 50
Baixar para ler offline
UnityScript
The Basics

WOODIWISS.ME

Freelance Web Developer & Lecturer
in the Winchester, Hampshire area.
ECMA
What/Who is ECMA?
•

European Computer Manufacturers Association.

•

Non-profit Standards Organisation.

•

Introducing ECMAScript!

WOODIWISS.ME
ECMAScript
Language

ECMAScript.es

Dialects
JavaScript.js
WOODIWISS.ME

ActionScript.as
ECMAScript
ToolKit

Dialects

JavaScript.js

WOODIWISS.ME
ECMAScript
ToolKit

Dialects

JavaScript.js

WOODIWISS.ME
ECMAScript

JavaScript.js
UnityScript.js

WOODIWISS.ME
Onward!
•

NewBehaviourScript.js

•

Basic starting point.

•

#pragma strict?

•

Start

•

Update

WOODIWISS.ME
WOODIWISS.ME
WOODIWISS.ME
WOODIWISS.ME
NewBehaviourScript.js

WOODIWISS.ME
NewBehaviourScript.js

WOODIWISS.ME
NewBehaviourScript.js

WOODIWISS.ME
Start()
•

gameObject = Cube

•

Start = run before first frame.
•

e.g set color, set size, set
position…

WOODIWISS.ME
Start()
•

gameObject = Cube

•

Start = run before first frame.
•

e.g set color, set size, set
position…

WOODIWISS.ME
Start()
•

gameObject = Cube

•

Start = run before first frame.
•

e.g set color, set size, set
position…

WOODIWISS.ME
Update

•

gameObject = Cube still.

•

Continually polling the code.
Each frame.

WOODIWISS.ME
Mono Madness
•

All scripts extend
MonoBehaviour.

•

Awake()

•

OnCollisionEnter()

•

FixedUpdate()

•

LOTS more base functions.

WOODIWISS.ME
User Created
Functions
Keeps your code DRY
!

D - on’t
R - epeat
Y - ourself

WOODIWISS.ME
User Created
Functions
Keeps your code DRY
!

D - on’t
R - epeat
Y - ourself

WOODIWISS.ME
User Created
Functions
Keeps your code DRY
!

D - on’t
R - epeat
Y - ourself

WOODIWISS.ME

Defined
User Created
Functions
Keeps your code DRY
!

D - on’t
R - epeat
Y - ourself

WOODIWISS.ME

Defined
User Created
Functions

Invoked

Keeps your code DRY
!

D - on’t
R - epeat
Y - ourself

WOODIWISS.ME

Defined
In more detail
WOODIWISS.ME
In more detail
WOODIWISS.ME
Define

In more detail
WOODIWISS.ME
Define

In more detail
WOODIWISS.ME
Call / Invoke

Define

In more detail
WOODIWISS.ME
Variables
What is a variable?
!

var playerHealth : int = 100;
!

var playerHealth : int;
playerHealth = 100;

WOODIWISS.ME
Basic Data Types
int - Number without decimal place.
float - Number with decimal place.
boolean - Truth value.
String - Text or words, numbers, some symbols.
Vector3 - X Y Z co-ordinates.
GameObject - Object that is present in the Unity Scene.

WOODIWISS.ME
Basic Data Types
int = 17;
float = 5.994;
boolean = true;
String = “Darren”;
Vector3(100,124,55);

// x, y, z

GameObject = GameObject.Find("Zombie");
WOODIWISS.ME
Casting
var fingersOnHand : int;
var playerHeight : float;
var powerupActive : boolean;
var playerName : String;
var playerStartLocation : Vector3;
var enemy : GameObject;
WOODIWISS.ME
Casting and Assigning
var playerAge : int = 17;
var playerHeight : float = 5.994;
var powerupActive : boolean = true;
var playerName : String = “Darren”;
var playerStartLocation = Vector3(0,0,0);
var enemy : GameObject;
enemy = GameObject.Find("Zombie");

WOODIWISS.ME
Arguments

•

First define required
parameters.

•

Specify arguments parsed to
function.

WOODIWISS.ME
Arguments

•

First define required
parameters.

•

Specify arguments parsed to
function.

WOODIWISS.ME
Arguments

•

First define required
parameters.

•

Specify arguments parsed to
function.

WOODIWISS.ME
More arguments
It’s like bloody Eastenders in here.
WOODIWISS.ME
More arguments
It’s like bloody Eastenders in here.
WOODIWISS.ME
More arguments
It’s like bloody Eastenders in here.
WOODIWISS.ME
More arguments
It’s like bloody Eastenders in here.
WOODIWISS.ME
Cube

More arguments
It’s like bloody Eastenders in here.
WOODIWISS.ME
Cube

More arguments
It’s like bloody Eastenders in here.
WOODIWISS.ME
Cube
1

More arguments
It’s like bloody Eastenders in here.
WOODIWISS.ME
Cube
1

More arguments
It’s like bloody Eastenders in here.
WOODIWISS.ME
Cube
1

More arguments
It’s like bloody Eastenders in here.
WOODIWISS.ME
Cube
1
cube

More arguments
It’s like bloody Eastenders in here.
WOODIWISS.ME
Cube
1

cube
cube

More arguments
It’s like bloody Eastenders in here.
WOODIWISS.ME
Links / Research
•

http://en.wikipedia.org/wiki/Ecma_International

•

http://en.wikipedia.org/wiki/ECMAScript

•

http://www.mono-project.com/What_is_Mono

•

docs.unity3d.com/Documentation/ScriptReference/MonoBehaviour.html

•

http://unity3d.com/learn/tutorials/modules/beginner/scripting

•

https://www.inkling.com/read/javascript-definitive-guide-david-flanagan-6th/chapter-8/function-arguments-and

•

http://www.sublimetext.com/

WOODIWISS.ME
Next Time
Scope / Operators / Statements …

WOODIWISS.ME

Freelance Web Developer & Lecturer
in the Winchester, Hampshire area.
Questions?

WOODIWISS.ME

Freelance Web Developer & Lecturer
in the Winchester, Hampshire area.

Mais conteúdo relacionado

Destaque

Destaque (17)

Volunteerism Conference 2012
Volunteerism Conference 2012Volunteerism Conference 2012
Volunteerism Conference 2012
 
Khalifatil muzdalifah
Khalifatil muzdalifahKhalifatil muzdalifah
Khalifatil muzdalifah
 
青年TuPa月報。11月號
青年TuPa月報。11月號 青年TuPa月報。11月號
青年TuPa月報。11月號
 
Inf1
Inf1Inf1
Inf1
 
θρησκευτικα
θρησκευτικαθρησκευτικα
θρησκευτικα
 
technology3-javascript-basics
technology3-javascript-basicstechnology3-javascript-basics
technology3-javascript-basics
 
Omgaan met biologische agentia- FEBEM - Brugge 2012
Omgaan met biologische agentia- FEBEM - Brugge 2012Omgaan met biologische agentia- FEBEM - Brugge 2012
Omgaan met biologische agentia- FEBEM - Brugge 2012
 
Everything you always wanted to know about Finnish declensions but were afrai...
Everything you always wanted to know about Finnish declensions but were afrai...Everything you always wanted to know about Finnish declensions but were afrai...
Everything you always wanted to know about Finnish declensions but were afrai...
 
Organization behaviours
Organization behavioursOrganization behaviours
Organization behaviours
 
ISG_Pós Graduação
ISG_Pós GraduaçãoISG_Pós Graduação
ISG_Pós Graduação
 
Rangka Utama.PDF
Rangka Utama.PDFRangka Utama.PDF
Rangka Utama.PDF
 
12NA30002 & 12NA30018
12NA30002 & 12NA3001812NA30002 & 12NA30018
12NA30002 & 12NA30018
 
Apuntes como-instalar-wp
Apuntes como-instalar-wpApuntes como-instalar-wp
Apuntes como-instalar-wp
 
Nuevo presentación de microsoft power point
Nuevo presentación de microsoft power pointNuevo presentación de microsoft power point
Nuevo presentación de microsoft power point
 
Lean manufacturing techniques (1)
Lean manufacturing techniques (1)Lean manufacturing techniques (1)
Lean manufacturing techniques (1)
 
CSS Basics
CSS BasicsCSS Basics
CSS Basics
 
Dampers
DampersDampers
Dampers
 

Semelhante a UnityScript Basics

What the web platform (and your app!) can learn from Node.js
What the web platform (and your app!) can learn from Node.jsWhat the web platform (and your app!) can learn from Node.js
What the web platform (and your app!) can learn from Node.jswbinnssmith
 
Javascript and Jquery: The connection between
Javascript and Jquery: The connection betweenJavascript and Jquery: The connection between
Javascript and Jquery: The connection betweenClint LaForest
 
Stupid Canvas Tricks
Stupid Canvas TricksStupid Canvas Tricks
Stupid Canvas Tricksdeanhudson
 
Automatically Assessing Code Understandability: How Far Are We?
Automatically Assessing Code Understandability: How Far Are We?Automatically Assessing Code Understandability: How Far Are We?
Automatically Assessing Code Understandability: How Far Are We?sscalabrino
 
Where There's Money, There's Crime: Web-based Threats
Where There's Money, There's Crime: Web-based ThreatsWhere There's Money, There's Crime: Web-based Threats
Where There's Money, There's Crime: Web-based ThreatsAvast
 
Build a game with javascript (may 21 atlanta)
Build a game with javascript (may 21 atlanta)Build a game with javascript (may 21 atlanta)
Build a game with javascript (may 21 atlanta)Thinkful
 
Browsers with Wings
Browsers with WingsBrowsers with Wings
Browsers with WingsRemy Sharp
 
Rapid prototyping with ScriptableObjects
Rapid prototyping with ScriptableObjectsRapid prototyping with ScriptableObjects
Rapid prototyping with ScriptableObjectsGiorgio Pomettini
 
Plugin Development @ WordCamp Norway 2014
Plugin Development @ WordCamp Norway 2014Plugin Development @ WordCamp Norway 2014
Plugin Development @ WordCamp Norway 2014Barry Kooij
 
Event-driven IO server-side JavaScript environment based on V8 Engine
Event-driven IO server-side JavaScript environment based on V8 EngineEvent-driven IO server-side JavaScript environment based on V8 Engine
Event-driven IO server-side JavaScript environment based on V8 EngineRicardo Silva
 
Ember.js Tokyo event 2014/09/22 (English)
Ember.js Tokyo event 2014/09/22 (English)Ember.js Tokyo event 2014/09/22 (English)
Ember.js Tokyo event 2014/09/22 (English)Yuki Shimada
 
JavaScript Libraries: The Big Picture
JavaScript Libraries: The Big PictureJavaScript Libraries: The Big Picture
JavaScript Libraries: The Big PictureSimon Willison
 
React Native Evening
React Native EveningReact Native Evening
React Native EveningTroy Miles
 
Marionette: the Backbone framework
Marionette: the Backbone frameworkMarionette: the Backbone framework
Marionette: the Backbone frameworkfrontendne
 
Is HTML5 Ready? (workshop)
Is HTML5 Ready? (workshop)Is HTML5 Ready? (workshop)
Is HTML5 Ready? (workshop)Remy Sharp
 
Is html5-ready-workshop-110727181512-phpapp02
Is html5-ready-workshop-110727181512-phpapp02Is html5-ready-workshop-110727181512-phpapp02
Is html5-ready-workshop-110727181512-phpapp02PL dream
 
Анатолій Ландишев - “Незв’язний код у Unity” GameCC 2017
Анатолій Ландишев - “Незв’язний код у Unity” GameCC 2017Анатолій Ландишев - “Незв’язний код у Unity” GameCC 2017
Анатолій Ландишев - “Незв’язний код у Unity” GameCC 2017Lviv Startup Club
 
JavaScript Fundamentals & JQuery
JavaScript Fundamentals & JQueryJavaScript Fundamentals & JQuery
JavaScript Fundamentals & JQueryJamshid Hashimi
 

Semelhante a UnityScript Basics (20)

What the web platform (and your app!) can learn from Node.js
What the web platform (and your app!) can learn from Node.jsWhat the web platform (and your app!) can learn from Node.js
What the web platform (and your app!) can learn from Node.js
 
Javascript and Jquery: The connection between
Javascript and Jquery: The connection betweenJavascript and Jquery: The connection between
Javascript and Jquery: The connection between
 
Stupid Canvas Tricks
Stupid Canvas TricksStupid Canvas Tricks
Stupid Canvas Tricks
 
Automatically Assessing Code Understandability: How Far Are We?
Automatically Assessing Code Understandability: How Far Are We?Automatically Assessing Code Understandability: How Far Are We?
Automatically Assessing Code Understandability: How Far Are We?
 
Game age ppt
Game age pptGame age ppt
Game age ppt
 
Where There's Money, There's Crime: Web-based Threats
Where There's Money, There's Crime: Web-based ThreatsWhere There's Money, There's Crime: Web-based Threats
Where There's Money, There's Crime: Web-based Threats
 
Build a game with javascript (may 21 atlanta)
Build a game with javascript (may 21 atlanta)Build a game with javascript (may 21 atlanta)
Build a game with javascript (may 21 atlanta)
 
Browsers with Wings
Browsers with WingsBrowsers with Wings
Browsers with Wings
 
Rapid prototyping with ScriptableObjects
Rapid prototyping with ScriptableObjectsRapid prototyping with ScriptableObjects
Rapid prototyping with ScriptableObjects
 
Plugin Development @ WordCamp Norway 2014
Plugin Development @ WordCamp Norway 2014Plugin Development @ WordCamp Norway 2014
Plugin Development @ WordCamp Norway 2014
 
Event-driven IO server-side JavaScript environment based on V8 Engine
Event-driven IO server-side JavaScript environment based on V8 EngineEvent-driven IO server-side JavaScript environment based on V8 Engine
Event-driven IO server-side JavaScript environment based on V8 Engine
 
Game dev 101 part 3
Game dev 101 part 3Game dev 101 part 3
Game dev 101 part 3
 
Ember.js Tokyo event 2014/09/22 (English)
Ember.js Tokyo event 2014/09/22 (English)Ember.js Tokyo event 2014/09/22 (English)
Ember.js Tokyo event 2014/09/22 (English)
 
JavaScript Libraries: The Big Picture
JavaScript Libraries: The Big PictureJavaScript Libraries: The Big Picture
JavaScript Libraries: The Big Picture
 
React Native Evening
React Native EveningReact Native Evening
React Native Evening
 
Marionette: the Backbone framework
Marionette: the Backbone frameworkMarionette: the Backbone framework
Marionette: the Backbone framework
 
Is HTML5 Ready? (workshop)
Is HTML5 Ready? (workshop)Is HTML5 Ready? (workshop)
Is HTML5 Ready? (workshop)
 
Is html5-ready-workshop-110727181512-phpapp02
Is html5-ready-workshop-110727181512-phpapp02Is html5-ready-workshop-110727181512-phpapp02
Is html5-ready-workshop-110727181512-phpapp02
 
Анатолій Ландишев - “Незв’язний код у Unity” GameCC 2017
Анатолій Ландишев - “Незв’язний код у Unity” GameCC 2017Анатолій Ландишев - “Незв’язний код у Unity” GameCC 2017
Анатолій Ландишев - “Незв’язний код у Unity” GameCC 2017
 
JavaScript Fundamentals & JQuery
JavaScript Fundamentals & JQueryJavaScript Fundamentals & JQuery
JavaScript Fundamentals & JQuery
 

Último

Developing An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilDeveloping An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilV3cube
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024The Digital Insurer
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesSinan KOZAK
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Allon Mureinik
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxKatpro Technologies
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 

Último (20)

Developing An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilDeveloping An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of Brazil
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen Frames
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 

UnityScript Basics