Skip to content

Commit

Permalink
Add comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
Eusth committed Feb 14, 2017
1 parent 31f8640 commit cc4919e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions HoneySelectVR/HoneySettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,11 @@ namespace HoneySelectVR
[XmlRoot("Settings")]
public class HoneySettings : VRSettings
{
[XmlComment("Whether or not to copy image effects from the main camera.")]
public bool ApplyShaders { get { return _ApplyShaders; } set { _ApplyShaders = value; } }
private bool _ApplyShaders = true;

[XmlComment("Blacklist of effects that are to be disable (because they don't look good in VR).")]
public string[] EffectBlacklist { get { return _EffectBlacklist; } set { _EffectBlacklist = value; } }
private string[] _EffectBlacklist = { "BloomAndFlares", "DepthOfField" };
}
Expand Down

0 comments on commit cc4919e

Please sign in to comment.