Skip to content

Commit a001606

Browse files
committed
Fix NRE in new projects
Change-Id: Id000b01553afeb10c21f1274f7f907f1468cb8fd
1 parent d15c982 commit a001606

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

UnitySDK/Assets/TiltBrush/Scripts/TbtSettings.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public static Version TbtVersion {
4444
}
4545

4646
public static BrushManifest BrushManifest {
47-
get { return sm_Instance.m_BrushManifest; }
47+
get { return Instance.m_BrushManifest; }
4848
}
4949

5050
[SerializeField] private BrushManifest m_BrushManifest = null;

0 commit comments

Comments
 (0)