Git Product home page Git Product logo

inputattribute's Introduction

A simple way to handle input shortcuts in Unity3D

InputAttribute

InputAttribute is a helper to handle input shortcuts in Unity. Though it's optimized and can be used on games it's intended to be used on non-game code(menus, ingame editors, etc.) or games that don't heavily rely on input such as turn-based games.

Usage

  1. Copy the code somewhere in your project.
  2. Create a GameObject in your scene and add a InputHandler to it.
  3. Add a InputSequence to any method in any of your custom scripts:
[InputSequence(Key.LeftControl, Key.Mouse1_Down)]
public void DoSomething()
{
  ...
}

Enjoy :)

Remarks

Each KeyCode enum is rewritten in a custom enum Prism.Key like so:

  • GetKey(KeyCode.A) becomes Key.A
  • GetKeyDown(KeyCode.A) becomes Key.A_Down
  • GetKeyUp(KeyCode.A) becomes Key.A_Up

Because of this you can't use custom inputs mapped in any other way.

Methods must be public.

Also it currently doesn't handle GameObjects added at runtime which have any Component with methods with the InputSequenceAttribute. The way InputHandler works is by getting all GameObjects in the scene at Start and saving them on a List, so it wont't find any GameObject added at runtime.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.