Easy Interaction System
  • 👋Welcome
  • 🚀Installation
    • New Project Setup
  • Setup new scene
  • Creating new interactions
    • Interaction anatomy
      • Input hints
        • More additional action hints
        • UpdateHints
      • Keep action active
      • Analog of OnEnable and OnDisable interaction
      • Analog of Update
      • Debug active interactions
  • Suport
  • Additional Systems
    • Inventory System
    • Notification System
Powered by GitBook
On this page
  1. Creating new interactions
  2. Interaction anatomy

Analog of Update

If you need to have an Update() (or LateUpdate()/FixedUpdate()), but it should work only when action is subscribed, you don't need to use if's with conditions.

You can just call Tick() instead of Update(), LateTick() and FixedTick() instead of LateUpdate() and FixedUpdate() instead.

PreviousAnalog of OnEnable and OnDisable interactionNextDebug active interactions

Last updated 1 year ago