Skip to content
This repository has been archived by the owner on Jan 10, 2022. It is now read-only.

Commit

Permalink
Access Modifiers for the CustomVolume API changed to public
Browse files Browse the repository at this point in the history
  • Loading branch information
JustArion authored May 13, 2021
1 parent 1b511a7 commit 1dcbd26
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions PostProcess Objects/CustomVolume.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@ public CustomVolume(string name, PostProcessProfile profile, float defaultWeight
}

internal static readonly List<CustomVolume> instances = new();
internal readonly GameObject gameObject;
public readonly GameObject gameObject;

internal bool enabled
public bool enabled
{
get => m_PostProcessVolume.enabled;
set => m_PostProcessVolume.enabled = value;
}
internal PostProcessVolume m_PostProcessVolume { get; }
internal PostProcessProfile m_PostProcessProfile
public PostProcessVolume m_PostProcessVolume { get; }
public PostProcessProfile m_PostProcessProfile
{
get => m_PostProcessVolume.sharedProfile;
private set
Expand Down

0 comments on commit 1dcbd26

Please sign in to comment.