-
Posts
6157 -
Joined
-
Last visited
-
Days Won
59
Everything posted by Animefan8888
-
Problem 4 takes like 30 seconds to do as well as problem 10(setUnlocalizedName(getRegistryName().toString)) and 14. 5 Might take upwards of 4 to 5 minutes. To apply to one Block/TileEntity. As long as you know what you are doing.While you say that your problem is with the rotation, I can't understand how simply having a rotation causes the server to desync from the client when the block is broken. So what you should do is step through your code in your IDE's debugger.
-
Did you even attempt to make the changes diesieben described, they could be somehow interfering with your blocks rotation.
-
Did you just now find this?
-
I appreciate any and all feedback ?
-
Currently all I know about this is that only the first argument is used, and it is used as a multiplier on a TRSRTransformation contained in an Optional, it is used on line 534 of ModelBlockAnimation. Also I explain this(I think) in my tutorial.
-
[1.11.2] How to display, but not trigger achievement?
Animefan8888 replied to 1Sstudios1's topic in Modder Support
What does this mean? What is happening, what do you want to happen. Is there an error? What is the error? -
Don't use GameRegistry.registerFuelHandler in your items class file override getItemBurnTime.
-
This forum doesn't just supply example code. What have you tried to do?
-
This means this is no longer the reccomend way to do this, typically it tells you the other method to use. In this case override getItemBurnTime in your items class.
- 1 reply
-
- 1
-
-
Confusion with CapabilityItemHandler and sidedness
Animefan8888 replied to pkmnfrk's topic in Modder Support
I've been there. Then you don't need to do anything on/for the client. -
Confusion with CapabilityItemHandler and sidedness
Animefan8888 replied to pkmnfrk's topic in Modder Support
This is true. Use packets to sync your data to the client. -
I would like to refine the tutorial and get the wording correct to simplify the tutorial before I go and do that. But that is on the list.
-
Is there a certain part that doesn't make sense so I can try to elaborate on that in my tutorial?
-
Trying to learn blockstates and config files...
Animefan8888 replied to AmeliaLotus's topic in Modder Support
You haven't declared all the variants, I believe this is your problem, but I can't be sure without the log. -
I have finished the tutorial on the Animation System here, please @diesieben07 @Draco18s @loordgek if you have time please look over my tutorial.
-
There is a WIP PR for documentation on this that has everything that is on this tutorial, and will soon have more such as Items and Entities. Here is a link to the PR. In this tutorial I will be explaining how to use the Animation State Machine or Forge's Animation System on a TileEntity, though this can be applied to Items or Entities as well. Let's start off easy, with the code for the Block, TileEntity and the binding of the TESR. Block TileEntity TESR Binding This is where the confusion comes from for the animation system. The armature and ASM JSON files. The ASM file has it's own "grammar" which is outlined by fry, here. This is a little vague so I will try to explain this a bit more, so that it is easier to understand with what I have come to know through my own attempts at using this system. Armature File ASM File Sample BlockState File I'm sure there are typos or possibly something I have missed or not explained well enough, so I would love some feedback even on formatting issues. I will also post my raw notes on this stuff that might contain extra information.
-
Trying to learn blockstates and config files...
Animefan8888 replied to AmeliaLotus's topic in Modder Support
public static final String MODID = "blockstatetraining"; does not equal "bst" Thank you Draco18s for making that evident I need sleep, but I need to finish this tutorial. -
Trying to learn blockstates and config files...
Animefan8888 replied to AmeliaLotus's topic in Modder Support
I don't believe your BlockState file is correct. You declare the forge version, and then try to use the vanilla version to define the variants. -
Trying to learn blockstates and config files...
Animefan8888 replied to AmeliaLotus's topic in Modder Support
Please post your whole log. Is your BlockState file located in assets/modid/blockstates? Does your BlockState file have the same name as your blocks registry name?