MikesLab Plugins
Identity
Identity
  • 🌟Identity Wiki
  • General
    • Installation
    • Commands
    • Placeholders
  • CONFIG
    • Introduction
    • Input GUI
    • Value GUI
    • Selector GUI
    • Main GUI
    • How to install your GUI configs
  • Element
    • Element
    • Conditions
    • Actions
  • RESOURCE
    • Colors
  • GUI
    • Layout
    • Page System
  • DATABASE
    • Setup your First Connection
      • MongoDB
      • SQL
      • JSON
Powered by GitBook
On this page
  1. GUI

Page System

PreviousLayoutNextSetup your First Connection

Last updated 10 months ago

To apply Page Systems automatically, simply define more elements than there are slots for a group of elements.

Refer to the documentation for other Element properties

To enhance performance, animations within page systems have been disabled.

layout:
  - "   "
  - "agb"
  - "   "
...
elements:
  'g':
    isGroupElement: true
    ...
  'g-1':
    isGroupElement: true
    ...
  'g-2':
    isGroupElement: true
    ...
...
# Next and Previous Buttons
  'a':
    displayName: "<green>Next Page"
    material: ARROW
    internalValue: NEXT_PAGE_G # This is REQUIRED for it to work  
  'b':
    displayName: "<red>Previous Page"
    material: REDSTONE
    internalValue: PREVIOUS_PAGE_G # G refers to the group element we've 
                                   # previously defined
Element