Everything posted by Animefan8888
-
Can I customize my chatbox?
Subscribe to the RenderGameOverlayEvent.Chat and render what you want there. You may have to render everything including the text to get the desired effect.
-
Error with immersive engineering
Did you update the mods manually? If so you may need to update the forge version that the modpack is using.
-
How to make a Pushable hasTileEntity Block with Pistons?
Please don't necropost. This is 5 years old.
-
[1.12.2] FluidTank without TileEntity
You can't and shouldn't. You will have to create these manually, and you cannot use the IFluidHandler interface without a TE for a Block. You will have to create an integer property that determines the level of the liquid and create different blocks for each fluid, not always possible. This will also prevent fluid pipes from interacting with your tanks, they check if the TE has the capability.
-
Custom Hit box of Block 1.12
Remove this line. blockState.addCollisionBoxToList(world, pos, new AxisAlignedBB(pos), all, player, false);
-
Custom Hit box of Block 1.12
You don't have to, Minecraft does their rendering in the RenderGlobal class at line 1996. However you can do whatever you want for your rendering.
-
Custom Hit box of Block 1.12
I don't understand your question.
-
Custom Hit box of Block 1.12
I'd like to say that you have definitely grown since you started. And that is how I started as well, and it is what made me decide my career path.
-
Custom Hit box of Block 1.12
This method is not needed if you have more than one collision box. This will apply the correct collision boxes. What you are pointing out is the selected bounding box. You have changed the collision bounding blocks. You can override getSelectedBoundingBox(IBlockState, World, BlockPos) To return an AxisAlignedBB to change the drawn outline. However, if you need to have more than one box drawn... And Finally, This isn't necessarily true. Anyone can get the "Forge Modder" tag if they want it. However I have probably spent more time within Forge/Minecraft code than he has. But I haven't done so longer than many more people on here, IE draco18s, diesieben07, etc. They definitely have also spent more time programming than myself.
-
Format Block Forge 1.12
Define "did not work"
-
Custom sounds not working while on servers
Then you wouldn't know that anything below 1.9 is not supported on this forum anymore. You will need to update to receive support.
-
[Solved][Dev Help, 1.12.2] Trying to figure a major issue regarding a baby entity infinitely running away from the player
Then he should get on here as well. Since he is the Dev. After looking at the code I dont see anything obvious. And it would help if I had where the baby was spawned at in the code.
-
[Solved][Dev Help, 1.12.2] Trying to figure a major issue regarding a baby entity infinitely running away from the player
On github it says that it was added to the todo list.
-
Format Block Forge 1.12
Yes that should work.
- Format Block Forge 1.12
-
Format Block Forge 1.12
You can call this again with another box.
-
Crashing Upon Registering Command?
You probably cant return null in some of those methods in your command class. Also you should be using CommandBase not ICommand.
-
1.12 How to make my wooden carriage recipe use whatever kind of plank in it's recipe, and not be specific like being oak?
What about all modded woods like forestry or biomes o' plenty?
-
Format Block Forge 1.12
This is correct.
-
Format Block Forge 1.12
- Format Block Forge 1.12
You'll use xStart, yStart, zStart, xEnd, yEnd, zEnd. 1 "pixel" is 1/16 and 2 "pixels" is 2/16- Format Block Forge 1.12
It needs to return the collision box, an instance of AxisAlignedBB. Or if you need multiple boxes use addCollisionBoxToList(IBlockState, World, BlockPos, AxisAlignedBB, List<AxisAlignedBB>, @Nullable Entity, boolean) and add all of your collision boxes to that list with the other addCollisionBoxToList method within your Block class.- Format Block Forge 1.12
override getCollisionBoundingBox(IBlockState, IBlockAccess, BlockPos) in your blocks class.- Format Block Forge 1.12
I don' think that is true. At least after looking through some of the vanilla models.- [1.12.2] Custom model doesn't render correctly
No, by the looks of it, it was made with Techne. It might be able to, haven't used BlockBench. Plus you don't know if the modeler used that program. - Format Block Forge 1.12
IPS spam blocked by CleanTalk.
Important Information
By using this site, you agree to our Terms of Use.