-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #294 from GothicVRProject/feature/sky-improvements
Feature/sky improvements
- Loading branch information
Showing
14 changed files
with
5,371 additions
and
146 deletions.
There are no files selected for viewing
4,996 changes: 4,994 additions & 2 deletions
4,996
Assets/GothicVR/Resources/Prefabs/UI Element Prefabs/VRPlayer.prefab
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
namespace GVR.Data | ||
{ | ||
public class SkyStateRain :SkyState | ||
{ | ||
public float endTime; | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,17 @@ | ||
namespace GVR.Manager.Settings | ||
using System.Collections.Generic; | ||
|
||
namespace GVR.Manager.Settings | ||
{ | ||
[System.Serializable] | ||
public class GameSettings | ||
{ | ||
public string GothicIPath; | ||
public string GothicILanguage; | ||
public string LogLevel; | ||
|
||
public string GothicMenuFontPath; | ||
public string GothicSubtitleFontPath; | ||
|
||
public Dictionary<string, Dictionary<string, string>> GothicINISettings = new(); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.