UnityGame/Library/PackageCache/com.unity.ai.navigation/Documentation~/Glossary.md
2024-10-27 10:53:47 +03:00

66 lines
3.3 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Glossary
## Animation blend tree
Used for continuous blending between similar Animation Clips based on float Animation Parameters.
## Animation clip
Animation data that can be used for animated characters or simple animations. An animation clip is one piece of motion, such as (one specific instance of) “Idle”, “Walk” or “Run”.
## Animation parameters
Used to communicate between scripting and the Animator Controller. Some parameters can be set in scripting and used by the controller, while other parameters are based on Custom Curves in Animation Clips and can be sampled using the scripting API.
## Animator window
The window where the Animator Controller is visualized and edited.
## Colliders
An invisible shape that is used to handle physical collisions for an object. A collider doesnt need to be exactly the same shape as the objects mesh - a rough approximation is often more efficient and indistinguishable in gameplay.
## Collision
A collision occurs when the physics engine detects that the colliders of two GameObjects make contact or overlap, and at least one has a Rigidbody component and is in motion.
## GameObject
The fundamental object in Unity scenes, which can represent characters, props, scenery, cameras, waypoints, and more.
## HeightMesh
A navmesh that contains additional data that is used to more accurately determine the height at any point along the navmesh.
## Input Geometry
The geometry to consider when baking the navmesh.
## Inspector
A Unity window that displays information about the currently selected GameObject, asset or project settings, allowing you to inspect and edit the values.
## Mesh
The main graphics primitive of Unity. Meshes make up a large part of your 3D worlds. Unity supports triangulated or Quadrangulated polygon meshes. Nurbs, Nurms, Subdiv surfaces must be converted to polygons.
## NavMesh
A mesh that Unity generates to approximate the walkable areas and obstacles in your environment for path finding and AI-controlled navigation.
## Prefab
An asset type that allows you to store a GameObject complete with components and properties. The prefab acts as a template from which you can create new object instances in the scene.
## Rasterization
The process of generating an image by calculating pixels for each polygon or triangle in the geometry. This is an alternative to ray tracing.
## Rigidbody
A component that allows a GameObject to be affected by simulated gravity and other forces.
## Root motion
Motion of characters root node, whether its controlled by the animation itself or externally.
## Scenes
A Scene contains the environments and menus of your game. Think of each unique Scene file as a unique level. In each Scene, you place your environments, obstacles, and decorations, essentially designing and building your game in pieces.
## Scripts
A piece of code that allows you to create your own Components, trigger game events, modify Component properties over time and respond to user input in any way you like.
## Terrains
The landscape in your scene. A Terrain GameObject adds a large flat plane to your scene and you can use the Terrains Inspector window to create a detailed landscape.
## Unity unit
The unit size used in Unity projects. By default, 1 Unity unit is 1 meter. To use a different scale, set the Scale Factor in the Import Settings when importing assets.
## Voxel
A 3D pixel.