Unity editing Flashcards

1
Q

What are “bounds” in Unity?

A

They refers to the bounding volume or region that encapsulates an object or a group of objects.

They define the spatial extent of an object and are commonly used for collision detection, rendering optimizations, or spatial queries.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What are values in Unity?

A

They are numeric or boolean data used to define properties and behaviors of objects.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

How can you define bounds in Unity using minimum and maximum values?

A

You can do that by creating a new Bounds object and setting its min and max properties accordingly.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

How can you check if a point is within a given bounds in Unity?

A

You can do that by using the Bounds.Contains() method.

This method returns true if the specified point is inside the bounds and false otherwise.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

How can you simulate realistic momentum in Unity?

A

You can apply forces to objects using physics-based components like Rigidbody.

By adjusting parameters like mass, drag, and velocity, you can achieve a more realistic sense of momentum in your game

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What are rotations in Unity?

A

They refer to the orientation or angular position of an object in 3D space.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What are quaternions in Unity?

A

They are a mathematical representation used to store and manipulate rotations in Unity, providing advantages over traditional Euler angles.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly