Archived
Private
Public Access
1
0
This repository has been archived on 2026-02-04. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ProjectBackup/Unity/Testproject/Library/PackageCache/com.unity.visualscripting@1.6.1/Documentation~/vs-concepts.md
2022-11-12 13:10:03 +01:00

1.1 KiB

#Basic concepts in visual scripting

Note
For versions 2019/2020 LTS, download the visual scripting solution from the Unity Asset Store.

There are four basic concepts in visual scripting that are used when building games.

###Type

Type is an attribute of data which informs the compiler on how to use the data. In scripting, everything is an Object: numbers, pieces of text, vectors, and Unity components are all objects.

###Variable

Variables are containers to store values and data. Each variable has a name, a type, and a value. The value inside a variable can change during runtime.

###Graphs, states and machines

Graphs are visual representations of logic. They're at the core of visual scripting.

###Groups

Create groups to organize the graph. Groups are boxes that surround units.