Skip to content

Commit

Permalink
fixes typo's in menu items
Browse files Browse the repository at this point in the history
  • Loading branch information
slipster216 committed Aug 17, 2016
1 parent 734844f commit 0d084f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Editor/VertexPainterNoiseBrush.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
namespace JBooth.VertexPainterPro
{
// Allow the user to create brush objects as assets in an editor folder
[CreateAssetMenu(menuName = "Create/Vertex Painter Brush/Noise Brush", fileName="noise_brush")]
[CreateAssetMenu(menuName = "Vertex Painter Brush/Noise Brush", fileName="noise_brush")]
public class VertexPainterNoiseBrush : VertexPainterCustomBrush
{
// I like a little object to hold the brush settings..
Expand Down
2 changes: 1 addition & 1 deletion Editor/VertexPainterWindow_GUI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ void DrawBakeGUI()
if (bakeSourceUV == BakeSourceUV.WorldSpaceXY || bakeSourceUV == BakeSourceUV.WorldSpaceXZ || bakeSourceUV == BakeSourceUV.WorldSpaceYZ)
{
worldSpaceLower = EditorGUILayout.Vector2Field("Lower world position", worldSpaceLower);
worldSpaceUpper = EditorGUILayout.Vector2Field("Lower world position", worldSpaceUpper);
worldSpaceUpper = EditorGUILayout.Vector2Field("Upper world position", worldSpaceUpper);
}
EditorGUILayout.BeginHorizontal();
EditorGUILayout.Space();
Expand Down

0 comments on commit 0d084f3

Please sign in to comment.