Skip to content

Commit 08be749

Browse files
Documentation tweaks.
1 parent 35e83d5 commit 08be749

File tree

3 files changed

+40
-40
lines changed

3 files changed

+40
-40
lines changed

CatmullRomSpline2D/README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -29,21 +29,21 @@ Okay, we've created some splines, let's see how to use them.
2929
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.
3030

3131
```
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);
3535
```
3636

3737
Next, you'll need to pass that data to the GetPosition method to receive a Vector2 of your position in world space.
3838

3939
```
40-
Vector2 position = path.GetPosition(segment, s);
40+
Vector2 position = path.GetPosition(segment, s);
4141
```
4242

4343
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.
4444

4545
```
46-
var direction = path.GetDirection(segment, s);
46+
var direction = path.GetDirection(segment, s);
4747
```
4848

4949
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.

PrefabPool/README.md

+25-25
Original file line numberDiff line numberDiff line change
@@ -6,56 +6,56 @@ This application of an object pool specifically focuses on reusing spawned prefa
66

77
## Usage
88

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.
1010

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.
1212

1313
For example:
1414

1515
```
16-
public class PoolDemoShip : PrefabMonoBehaviour
16+
public class PoolDemoShip : PrefabMonoBehaviour
17+
{
18+
Vector3 speed = Vector3.zero;
19+
20+
public void Reset()
1721
{
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;
2726
}
27+
}
2828
```
2929

3030
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.
3131

3232
Taking example:
3333

3434
```
35-
GameObject shipPrefab;
35+
GameObject shipPrefab;
3636
37-
void Update()
37+
void Update()
38+
{
39+
if(readyToTake)
3840
{
39-
if(readyToTake)
40-
{
41-
var ship = PrefabPool.Instance.TakeObject<PoolDemoShip>(shipPrefab);
42-
ship.Reset();
43-
}
41+
var ship = PrefabPool.Instance.TakeObject<PoolDemoShip>(shipPrefab);
42+
ship.Reset();
4443
}
44+
}
4545
```
4646

4747
Returning example:
4848

4949
```
50-
// in the PoolDemoShip class
50+
// in the PoolDemoShip class
5151
52-
void Update()
52+
void Update()
53+
{
54+
if(readyToReturn)
5355
{
54-
if(readyToReturn)
55-
{
56-
PrefabPool.Instance.ReturnObject(this);
57-
}
56+
PrefabPool.Instance.ReturnObject(this);
5857
}
58+
}
5959
```
6060

6161
### Note

docs/README.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -26,26 +26,26 @@ An implementation of the [Singleton pattern](https://en.wikipedia.org/wiki/Singl
2626
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.
2727

2828
```
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+
}
3333
```
3434

3535
When you want to get an instance of the object or create one if it doesn't exist, use the Instance property.
3636

3737
```
38-
var instance = SingletonExample.Instance;
38+
var instance = SingletonExample.Instance;
3939
```
4040

4141
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.
4242

4343
```
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+
}
4949
```
5050

5151
For a more concrete example usage, see [PrefabPool](../PrefabPool/README.md).

0 commit comments

Comments
 (0)