Tooltip System
  • WELCOME
    • πŸ‘‹Hello
  • πŸ—ΊοΈRoadmap
  • ⛑️Support & Community
  • πŸŽ“Changelog
  • GETTING STARTED
    • πŸ”ŒImport package
    • πŸ““Scene Setup
    • πŸ“šCreating Tooltip UI
    • πŸ“˜Add tooltip content
  • HOW IT WORKS
    • 🧠Tooltip System
    • πŸ”·Tooltip Information
    • πŸ”·Tooltip Display Triggers
    • πŸ”·Tooltip Visuals (UI Prefabs)
    • πŸ”ΆTooltip Positioning
    • πŸ”ΆTooltip Timing and Visibility
    • ♦️Tooltip Animation Controller
    • ♦️Tooltip Layout System
    • 🧩Extensions
Powered by GitBook
On this page
  1. HOW IT WORKS

Tooltip Display Triggers

Objects can show tooltips automatically when hovered or interacted with.

To enable this:

  1. Add a TooltipObject to your GameObject.

  2. Assign a TooltipInformation type to define what it should display (e.g., text, icon, or stat fields).

  3. Tooltips will appear based on your settings:

    • On hover

    • After delay

    • When cursor is stationary

Optional: Use TooltipObjectDetector to automatically detect objects with tooltips using raycasts.

PreviousTooltip InformationNextTooltip Visuals (UI Prefabs)

Last updated 4 days ago

πŸ”·