Oraxen
  • Getting started
  • Frequently Asked Questions
  • Usage
    • Commands
    • Default items
    • Recipes
  • Configuration
    • Understanding the basics
    • Plugin settings
    • Items (beginners)
    • Items (advanced)
      • Dyeable Items
    • Custom Armors
      • Component Based (1.21.2+)
      • Trims Based (1.20-1.21.1)
      • Shader Based (1.18-1.19.4)
    • Custom HUD
    • Item Appearance
    • Glyphs
      • Custom Gui
  • Mechanics
    • Introduction
    • All mechanics
      • Custom mechanic
      • clickAction Mechanic
    • Furniture Mechanic
      • Furniture Position
      • Display-Entity Furniture
      • Farming Mechanic
    • NoteBlock mechanic
      • Stripped log Mechanic
      • Directional mechanic
      • Farmblock Mechanic
    • StringBlock Mechanic
      • Sapling Mechanic
  • Compatibility
    • BossShopPro - shop
    • CrateReloaded - crates
    • ModelEngine - custom mobs
    • MythicMobs - custom mobs
    • TrMenu - custom inventories
    • MMoItems
    • MythicCrucible
    • HappyHUD
    • World Generators
      • Iris World Generator
      • EpicWorldGenerator
      • Custom Ore Generator
      • RealisticWorldGenerator
  • Vendors
    • Vendor Guidelines
  • Developers
    • Create your own Mechanic
    • Add Compatibility with a plugin
    • Custom hosting service
    • API
Powered by GitBook
On this page
  • How do I get the unicode for the glyph?
  • How do I create an invisible item?

Was this helpful?

  1. Configuration
  2. Glyphs

Custom Gui

PreviousGlyphsNextIntroduction

Last updated 5 months ago

Was this helpful?

With Oraxen glyph you can create custom textured GUI's and here is an example

customshop:
  texture: custom/default/custom/gui_tienda.png
  ascent: 13
  height: 256

The textures cannot be higher resolution than 256x256 and name of the texture must be all lowercase without spaces, as with all Resourcepack files. To adjust the horizontal position of your texture/glyph in the inventory, use the shift-tag. <shift:-8> for moving 8 pixels back, and <shift:211> for moving 211 pixels forward.

How do I get the unicode for the glyph?

This really is not necessary as Oraxen will handle the <glyph:glyph_id> tag in any inventory / title. So to add this glyph in any other plugin, just set the title to be <glyph:glyph_id>. If you still want the raw unicode, you can find it in your glyphs config.

How do I create an invisible item?

Invisible elements are ideal for making clickable buttons. To create invisible elements, you will need to make an element with a transparent texture. An example here

invisible_item:
  displayname: "<white>"
  material: PAPER
  Pack:
    generate_model: true
    parent_model: "item/generated"
    textures:
    - required/particle
Page cover image