You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: CatmullRomSpline2D/README.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -29,21 +29,21 @@ Okay, we've created some splines, let's see how to use them.
29
29
These splines are designed to be used as paths for game objects to move along. To find your position on the path, first you need to know what segment you are in by passing the distance along the path from the beginning. This will give you the current segment number and your position inside that segment.
30
30
31
31
```
32
-
int segment;
33
-
float s;
34
-
path.GetSegment(distanceAlongPath, out segment, out s);
32
+
int segment;
33
+
float s;
34
+
path.GetSegment(distanceAlongPath, out segment, out s);
35
35
```
36
36
37
37
Next, you'll need to pass that data to the GetPosition method to receive a Vector2 of your position in world space.
38
38
39
39
```
40
-
Vector2 position = path.GetPosition(segment, s);
40
+
Vector2 position = path.GetPosition(segment, s);
41
41
```
42
42
43
43
Finally, if you'd like to know the direction of the path at that position, you can pass the segment info to that GetDirection method.
44
44
45
45
```
46
-
var direction = path.GetDirection(segment, s);
46
+
var direction = path.GetDirection(segment, s);
47
47
```
48
48
49
49
And that's it! There's a simple example solution in the demos folder showing a spaceship moving along first an S-shaped path and then a Z-shaped path. See [FollowPath.cs](../Demos/CatmullRomSpline2D/FollowPath.cs) for a code example.
Copy file name to clipboardexpand all lines: PrefabPool/README.md
+25-25
Original file line number
Diff line number
Diff line change
@@ -6,56 +6,56 @@ This application of an object pool specifically focuses on reusing spawned prefa
6
6
7
7
## Usage
8
8
9
-
To use a prefab with PrefabPool, your game object must be PrefabMonoBehaviour instead of Unity's standard MonoBehaviour class. It's a very thin wrapper that adds a field so that we can tag it with the prefab the game object was spawned from. This is used to sort back into the correct pool collection when the object is returned.
9
+
To use a prefab with PrefabPool, your game object must be derived from PrefabMonoBehaviour instead of Unity's standard MonoBehaviour class. It's a very thin wrapper that adds a field so that we can tag it with the prefab the game object was spawned from. This is used to sort back into the correct pool collection when the object is returned.
10
10
11
-
While it's not required, I recommend adding a public Reset method to your class and handling your initialization there. You can't rely on Awake and Start for initialization, because the object is only spawned once. OnEnable and OnDisable will still work, though.
11
+
While it's not required, it's recommended to add a public Reset method to your class and handle your initialization there. You can't rely on Awake and Start for initialization, because the object is only spawned once and recycled. OnEnable and OnDisable will still work normally, though.
12
12
13
13
For example:
14
14
15
15
```
16
-
public class PoolDemoShip : PrefabMonoBehaviour
16
+
public class PoolDemoShip : PrefabMonoBehaviour
17
+
{
18
+
Vector3 speed = Vector3.zero;
19
+
20
+
public void Reset()
17
21
{
18
-
Vector3 speed = Vector3.zero;
19
-
20
-
public void Reset()
21
-
{
22
-
transform.position = Vector3.zero;
23
-
speed.x = Random.Range(-10.0f, 10.0f);
24
-
speed.y = Random.Range(-10.0f, 10.0f);
25
-
speed.z = 0.0f;
26
-
}
22
+
transform.position = Vector3.zero;
23
+
speed.x = Random.Range(-10.0f, 10.0f);
24
+
speed.y = Random.Range(-10.0f, 10.0f);
25
+
speed.z = 0.0f;
27
26
}
27
+
}
28
28
```
29
29
30
30
To take or return game objects from the pool, simply call the TakeObject or ReturnObject methods. TakeObject takes and optional Transform parameter if you want the retrieved object to be parented for you.
31
31
32
32
Taking example:
33
33
34
34
```
35
-
GameObject shipPrefab;
35
+
GameObject shipPrefab;
36
36
37
-
void Update()
37
+
void Update()
38
+
{
39
+
if(readyToTake)
38
40
{
39
-
if(readyToTake)
40
-
{
41
-
var ship = PrefabPool.Instance.TakeObject<PoolDemoShip>(shipPrefab);
42
-
ship.Reset();
43
-
}
41
+
var ship = PrefabPool.Instance.TakeObject<PoolDemoShip>(shipPrefab);
Copy file name to clipboardexpand all lines: docs/README.md
+10-10
Original file line number
Diff line number
Diff line change
@@ -26,26 +26,26 @@ An implementation of the [Singleton pattern](https://en.wikipedia.org/wiki/Singl
26
26
Derive your class from MonoBehaviourSingleton. If you don't want the object to persist on Unity scene changes (when it would otherwise be destroyed) override the PersistOnSceneChange property.
27
27
28
28
```
29
-
public class SingletonExample : MonoBehaviourSingleton<SingletonExample>
30
-
{
31
-
public override bool PersistOnSceneChange { get { return false; } }
32
-
}
29
+
public class SingletonExample : MonoBehaviourSingleton<SingletonExample>
30
+
{
31
+
public override bool PersistOnSceneChange { get { return false; } }
32
+
}
33
33
```
34
34
35
35
When you want to get an instance of the object or create one if it doesn't exist, use the Instance property.
36
36
37
37
```
38
-
var instance = SingletonExample.Instance;
38
+
var instance = SingletonExample.Instance;
39
39
```
40
40
41
41
If you want to try to grab an instance of the object, but not create one, use ExistingInstance instead. (A good reason to use this is to prevent accidentally creating a new instance during application shutdown.) Make sure to check for a null return.
42
42
43
43
```
44
-
var instance = SingletonExample.ExistingInstance;
45
-
if(instance != null)
46
-
{
47
-
// do something with it
48
-
}
44
+
var instance = SingletonExample.ExistingInstance;
45
+
if(instance != null)
46
+
{
47
+
// do something with it
48
+
}
49
49
```
50
50
51
51
For a more concrete example usage, see [PrefabPool](../PrefabPool/README.md).
0 commit comments