A game about forced loneliness, made by TACStudios
1# Basic concepts in Visual Scripting 2 3> [!NOTE] 4> For versions 2019/2020 LTS, download the Visual Scripting package from the [Unity Asset Store](https://assetstore.unity.com/packages/tools/visual-bolt-163802). 5 6In this section, you can find information about basic concepts in Visual Scripting. These concepts will help you create logic for your application. 7 8## The interface 9 10The Visual Scripting interface starts with the Graph window. For more information, see [The interface](vs-interface-overview.md). 11 12## Nodes 13 14Nodes are the most basic part of creating scripts in Visual Scripting. For more information, see [Nodes](vs-nodes.md). 15 16## Graphs and Machines 17 18Graphs contain the visual representations of logic in your application. To use a graph, you attach it to a Script Machine or State Machine on a GameObject. For more information about graphs, see [Graphs](vs-graph-types.md). For more information about Script Machines and State Machines, see [Script Machines and State Machines](vs-graph-machine-types.md). 19 20## Variables 21 22Variables act as a container for a piece of information that might change as your application runs. For more information, see [Variables](vs-variables.md). 23 24## Object types 25 26Variables, data, and objects in Visual Scripting all have a specific type. For more information, see [Object types](vs-types.md). 27 28 29 30 31