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

Commit 1dcbd26

Browse files
authored
Access Modifiers for the CustomVolume API changed to public
1 parent 1b511a7 commit 1dcbd26

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

PostProcess Objects/CustomVolume.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,15 @@ public CustomVolume(string name, PostProcessProfile profile, float defaultWeight
3030
}
3131

3232
internal static readonly List<CustomVolume> instances = new();
33-
internal readonly GameObject gameObject;
33+
public readonly GameObject gameObject;
3434

35-
internal bool enabled
35+
public bool enabled
3636
{
3737
get => m_PostProcessVolume.enabled;
3838
set => m_PostProcessVolume.enabled = value;
3939
}
40-
internal PostProcessVolume m_PostProcessVolume { get; }
41-
internal PostProcessProfile m_PostProcessProfile
40+
public PostProcessVolume m_PostProcessVolume { get; }
41+
public PostProcessProfile m_PostProcessProfile
4242
{
4343
get => m_PostProcessVolume.sharedProfile;
4444
private set

0 commit comments

Comments
 (0)