15 lines
No EOL
507 B
C#
15 lines
No EOL
507 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
[CreateAssetMenu(menuName = "CharacterStateMachine/Decisions/InitiatedInteraction")]
|
|
public class InitiatedInteractionDecision : Decision
|
|
{
|
|
public override bool Decide(StateController controller)
|
|
{
|
|
return Input.GetKeyDown(KeyCode.E) &&
|
|
InteractionPanelController.InteractionPrompted() &&
|
|
controller.SelectedObject != null &&
|
|
controller.SelectedInteraction != null;
|
|
}
|
|
} |