Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions FutileProject/Assets/Futile/Core/FTouchManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public class FTouchManager
private List<FMultiTouchableInterface> _multiTouchablesToAdd = new List<FMultiTouchableInterface>();
private List<FMultiTouchableInterface> _multiTouchablesToRemove = new List<FMultiTouchableInterface>();

private FSingleTouchableInterface _theSingleTouchable = null;
protected FSingleTouchableInterface _theSingleTouchable = null;

private bool _isUpdating = false;

Expand Down Expand Up @@ -81,7 +81,7 @@ public bool DoesTheSingleTouchableExist()
return (_theSingleTouchable != null);
}

public void Update()
virtual public void Update()
{
if (!isEnabled) return;

Expand Down