Skip to content

Commit

Permalink
Update test scripts to avoid warning on 2018.3
Browse files Browse the repository at this point in the history
  • Loading branch information
keijiro committed Dec 14, 2018
1 parent ae0b0e3 commit a0d2d31
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Assets/Test/Randomizer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

public class Randomizer : MonoBehaviour
{
[SerializeField] GameObject[] _objects;
[SerializeField] GameObject[] _objects = null;

IEnumerator Start()
{
Expand Down
2 changes: 1 addition & 1 deletion Assets/Test/SourceSelector.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

public class SourceSelector : MonoBehaviour
{
[SerializeField] Dropdown _dropdown;
[SerializeField] Dropdown _dropdown = null;

SpoutReceiver _receiver;

Expand Down
2 changes: 1 addition & 1 deletion Assets/Test/TestCards/Runtime/TestOverlay.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public int scale {

#region Private members

[SerializeField, HideInInspector] Shader _shader;
[SerializeField, HideInInspector] Shader _shader = null;
Material _material;

#endregion
Expand Down

0 comments on commit a0d2d31

Please sign in to comment.