Skip to content

Instantly share code, notes, and snippets.

@Problematic
Created August 17, 2014 02:22
Show Gist options
  • Select an option

  • Save Problematic/8e8578fbf75d5d5dcfce to your computer and use it in GitHub Desktop.

Select an option

Save Problematic/8e8578fbf75d5d5dcfce to your computer and use it in GitHub Desktop.
using UnityEngine;
using System.Collections;
public class CoupledComponent : MonoBehaviour
{
void Update ()
{
if (Input.GetKeyDown(KeyCode.E))
{
PerformAction();
}
}
void PerformAction ()
{
Debug.Log("Performing some action related to the game logic");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment