Thanks for following along! This is a tagged release (2021.721.0).
Breaking Changes
PlatformAction
type is changed to an enum type
If PlatformAction.ActionType
was matched, change to a matching of PlatformAction
itself like:
bool OnPressed(PlatformAction action) {
- switch (action.ActionType)
+ switch (action)
{
- case PlatformActionType.Cut:
+ case PlatformAction.Cut: