#How do I make custom fluid in Kubejs?
25 messages · Page 1 of 1 (latest)
Once your ticket has been resolved, please close it with </ticket close:1054771505520717835> command!
StartupEvents.registry('fluid', e => {
e.create('molten_insanium')
.displayName('Molten Insanium')
.stillTexture('kubejs:block/molten_still')
.flowingTexture('kubejs:block/molten_flowing')
.bucketColor('a339d4')
.thinTexture('a339d4')
})```
don't use 'a339d4' and instead 0xa339d4
ok
still black
and invisible in jei
what is the texture in kubejs/assets/kubejs/block/molten_still.png
yea
hmm
wait don't use still/flowing and thin at the same time
just the pair or the other, both both
and if you want to tint it then use .color(0xABCDEF) or what ever
k
@thorn birch Unresolved thread still hasn't been closed! If your question was answered, please close this post with </ticket close:1054771505520717835> command!
StartupEvents.registry('fluid', e => {
e.create('molten_insanium')
.displayName('Molten Insanium')
.stillTexture('kubejs:block/molten_still')
.flowingTexture('kubejs:block/molten_flowing')
.bucketColor(0xa339d4)
.thinTexture(0xa339d4)
})
This should work, as I just had the same issue and resolved it by removing the ' <- from the color.