Skip to content

Commit ddbe869

Browse files
author
Malte Weiß
committed
fixes further typos in the readme
1 parent 5a76979 commit ddbe869

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# What are (runtime) presets?
22

3-
Presets are a way to store a components values to an asset file, that can be reapplied to other components either in the [editor](https://docs.unity3d.com/Manual/Presets.html) or by [scripting](https://docs.unity3d.com/2018.2/Documentation/ScriptReference/Presets.Preset.html).
3+
Presets are a way to store a components values to an asset file that can be reapplied to other components either in the [editor](https://docs.unity3d.com/Manual/Presets.html) or by [scripting](https://docs.unity3d.com/2018.2/Documentation/ScriptReference/Presets.Preset.html).
44

55
Presets have one downside though: They are placed in the `UnityEditor` namespace and can therefore not be used in your compiled game. Loading presets at runtime is unfourtunately not possible. This plug-in intends solve this problem.
66

7-
Runtime presets an alternative to the Unity presets by storing components as prefabs that can then be reapplied at runtime. Using runtime presets is nearly identical to using the default Unity presets:
7+
Runtime presets are an alternative to the Unity presets by storing components as prefabs that can then be reapplied at runtime. Using runtime presets is nearly identical to using the default Unity presets:
88

99
```csharp
1010
public class ApplyPreset : MonoBehaviour
@@ -27,15 +27,15 @@ After downloading and importing the package, you will find a new entry `Create R
2727

2828
## Creating a runtime preset
2929

30-
Open the gear menu ![alt text](https://github.com/Moolt/UnityRuntimePresets/raw/master/Documentation/gear_icon.png "gear icon") on any component in a prefab or scene and click `Create Runtime Preset`.
30+
Open the gear menu ![alt text](https://github.com/Moolt/UnityRuntimePresets/raw/master/Documentation/gear_icon.png "gear icon") on any GameObjects component and click `Create Runtime Preset`.
3131

3232
![alt text](https://raw.githubusercontent.com/Moolt/UnityRuntimePresets/master/Documentation/creating_preset.png "creating runtime preset")
3333

3434
The plug-in will then create the preset in the `Assets` folder. A newly created preset will always have the default name `New Preset`. Rename it after creation to prevent it from being overwritten.
3535

3636
![alt text](https://raw.githubusercontent.com/Moolt/UnityRuntimePresets/master/Documentation/preset_prefab.png "preset file")
3737

38-
The preset is simply an prefab with a copy of your selected component. It also has an additional component called `Preset`. Keep this in mind as we'll need it in the next step.
38+
The preset is simply a prefab with a copy of your selected component. It also has an additional component called `Preset`. Keep this in mind as we'll need it in the next step.
3939

4040
![alt text](https://raw.githubusercontent.com/Moolt/UnityRuntimePresets/master/Documentation/preset_component.png "preset detail")
4141

0 commit comments

Comments
 (0)