Skip to content

Commit

Permalink
Removed author comment and made Start methods private
Browse files Browse the repository at this point in the history
  • Loading branch information
Averimon committed Nov 18, 2024
1 parent 6953b50 commit c8d282e
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
//
//Author: Tobias Stöckl
//
using UnityEngine;

public class ToggleUIElement : MonoBehaviour
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public enum SelectObjectType

private PC_ObjectSelectionHandler _objectSelectionHandler;

void Start()
private void Start()
{
if (!_objectSelectionHandler)
_objectSelectionHandler = GameObject.FindObjectOfType<PC_ObjectSelectionHandler>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public class PC_ObjectSelectionHandler : MonoBehaviour
private PC_InputParser_Float_TMP _yVariableInputParser;
private PC_InputParser_Float_TMP _zVariableInputParser;

void Start()
private void Start()
{
AdaptButtonTextCharge();

Expand Down

0 comments on commit c8d282e

Please sign in to comment.