Skip to content

Commit

Permalink
Merge pull request #69 from Santarh/fixInspectorTips
Browse files Browse the repository at this point in the history
Fix inspector tip's typo.
  • Loading branch information
Santarh authored Jun 3, 2019
2 parents 156dde5 + d45a955 commit 4284199
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions MToon/Editor/MToonInspector.cs
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ private void Draw(MaterialEditor materialEditor, Material[] materials)
"Zero is Default. Negative value increase lit area. Positive value increase shade area."));
materialEditor.TexturePropertySingleLine(
new GUIContent("Shadow Receive Multiplier",
"Texture (A) * Rate. White is Default. Black attenuates shadows."),
"Texture (R) * Rate. White is Default. Black attenuates shadows."),
_receiveShadowTexture,
_receiveShadowRate);
materialEditor.TexturePropertySingleLine(
Expand Down Expand Up @@ -314,7 +314,7 @@ private void Draw(MaterialEditor materialEditor, Material[] materials)

EditorGUILayout.LabelField("Auto Animation", EditorStyles.boldLabel);
{
materialEditor.TexturePropertySingleLine(new GUIContent("Mask"), _uvAnimMaskTexture);
materialEditor.TexturePropertySingleLine(new GUIContent("Mask", "Auto Animation Mask Texture (R)"), _uvAnimMaskTexture);
materialEditor.ShaderProperty(_uvAnimScrollX, "Scroll X (per second)");
materialEditor.ShaderProperty(_uvAnimScrollY, "Scroll Y (per second)");
materialEditor.ShaderProperty(_uvAnimRotation, "Rotation (per second)");
Expand Down

0 comments on commit 4284199

Please sign in to comment.