Skip to content

Commit

Permalink
[fix, docs] Added a new logo, splash image, and some minor editor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Owmacohe committed Mar 18, 2024
1 parent 5b14ede commit 8590c7e
Show file tree
Hide file tree
Showing 44 changed files with 2,236 additions and 137 deletions.
2 changes: 1 addition & 1 deletion Assets/ConversationUI.prefab
Original file line number Diff line number Diff line change
Expand Up @@ -519,7 +519,7 @@ RectTransform:
m_GameObject: {fileID: 8087387361097161738}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalScale: {x: 0, y: 0, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 1
m_Children:
- {fileID: 2904968245057490240}
Expand Down
89 changes: 0 additions & 89 deletions Assets/DescantActorEditorStyleSheet.uss

This file was deleted.

3 changes: 0 additions & 3 deletions Assets/DescantActorEditorStyleSheet.uss.meta

This file was deleted.

5 changes: 5 additions & 0 deletions Assets/DescantGraphEditorStyleSheet.uss
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,11 @@ DescantChoiceNode #output TextField TextElement {
margin: 2;
}

DescantChoiceNode #output .choice_number {
margin-right: 5;
font-size: 18;
}

DescantChoiceNode #contents Button,
DescantResponseNode #contents Button,
DescantStartNode #contents Button,
Expand Down
4 changes: 2 additions & 2 deletions Components/DescantComponentUtilities.cs
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ public static float GetComponentMaximum(string componentName)
/// <param name="type">The type of the parameter</param>
public static object GetComponentParameterValue(string value, Type type)
{
if (type == typeof(int)) return float.Parse(value);
if (type == typeof(float)) return float.Parse(value);
if (type == typeof(int)) return value.Trim().Equals("") ? 0 : int.Parse(value);
if (type == typeof(float)) return value.Trim().Equals("") ? 0f : float.Parse(value);
return value;
}

Expand Down
7 changes: 7 additions & 0 deletions Descant-1.1.1.unitypackage.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions Documentation/Website/.idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions Documentation/Website/.idea/Website.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions Documentation/Website/.idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions Documentation/Website/.idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added Documentation/Website/Descant_Logo_C_200.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
140 changes: 140 additions & 0 deletions Documentation/Website/Descant_Logo_C_200.png.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added Documentation/Website/Descant_Splash_Image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 8590c7e

Please sign in to comment.