Developers
Landing Page
Custom Bees
Custom Bees
  • Creating A Custom Bee
    • The Custom Bee JSON
    • Core Data
    • Render Data
      • Layer Data
      • Color Data
    • Breed Data
      • Bee Family
    • Combat Data
    • Mutation Data
      • Mutation Recipe
        • Mutation Type
    • Trait Data
      • Bee Aura
      • Potion Effect
      • Damage Effect
      • Damage Type
    • Trade Data
Powered by GitBook
On this page
  • Customization Options
  • spawnEggPrimaryColor
  • spawnEggSecondaryColor
  • jarColor

Was this helpful?

Edit on GitHub
Export as PDF
  1. Creating A Custom Bee
  2. Render Data

Color Data

The color customization component handles the Bee Jar and Spawn Egg colors.

Template:
"resourcefulbees:rendering/v1": {
  "ColorData": {
    "spawnEggPrimaryColor": 16444375,
    "spawnEggSecondaryColor": 13789470,
    "jarColor": 6266528
  }
}

Customization Options


spawnEggPrimaryColor

Sets the primary color used on the spawn egg item.


Name: Primary Spawn Egg Color

Key: spawnEggPrimaryColor

Type: Color

Default: No Color

"resourcefulbees:rendering/v1": {
  "ColorData": {
    "spawnEggPrimaryColor": 16444375
  }
}
"resourcefulbees:rendering/v1": {
  "ColorData": {
    "spawnEggPrimaryColor": "red"
  }
}
"resourcefulbees:rendering/v1": {
  "ColorData": {
    "spawnEggPrimaryColor": "#FF0000"
  }
}

spawnEggSecondaryColor

Sets the secondary color used on the spawn egg item.


Name: Secondary Spawn Egg Color

Key: spawnEggSecondaryColor

Type: Color

Default: No Color

"resourcefulbees:rendering/v1": {
  "ColorData": {
    "spawnEggSecondaryColor": 16444375
  }
}
"resourcefulbees:rendering/v1": {
  "ColorData": {
    "spawnEggSecondaryColor": "red"
  }
}
"resourcefulbees:rendering/v1": {
  "ColorData": {
    "spawnEggSecondaryColor": "#FF0000"
  }
}

jarColor

The color used on the jar when the bee is in the bee jar.


Name: Bee Jar Color

Key: jarColor

Type: Color

Default: No Color

"resourcefulbees:rendering/v1": {
  "ColorData": {
    "jarColor": 16444375
  }
}
"resourcefulbees:rendering/v1": {
  "ColorData": {
    "jarColor": "red"
  }
}
"resourcefulbees:rendering/v1": {
  "ColorData": {
    "jarColor": "#FF0000"
  }
}

PreviousLayer DataNextBreed Data

Last updated 1 year ago

Was this helpful?