Jump to content

lonelymelon07

Members
  • Posts

    3
  • Joined

  • Last visited

lonelymelon07's Achievements

Tree Puncher

Tree Puncher (2/8)

0

Reputation

  1. OK, makes sense. Thanks very much.
  2. OK, thank you, makes sense. I suppose I will be able to find some tutorials that don't make you simple copy code. An extra question - do you know the reason some variables are named like some kind of serial number in the source? : public Material(MaterialColor p_76324_, boolean p_76325_, boolean p_76326_, boolean p_76327_, boolean p_76328_, boolean p_76329_, boolean p_76330_, PushReaction p_76331_) { this.color = p_76324_; this.liquid = p_76325_; this.solid = p_76326_; this.blocksMotion = p_76327_; this.solidBlocking = p_76328_; this.flammable = p_76329_; this.replaceable = p_76330_; this.pushReaction = p_76331_; }
  3. I've just recently started getting into Forge modding, but I've found rather a lack of documentation or proper API reference. I can follow tutorials on YouTube, sure, but I'm not the biggest fan of that other than setting me off in the right direction. The official Forge documentation is nothing more than a brief tutorial for some basic concepts. Fine, but when I want to add a food item, for example, I find no information on the specifics of `Item$Properties#food` or its associated `FoodProperties`. My IDE (Eclipse) will tell me nothing either, and some javadocs I have found online also seem to contain no documentation whatsoever. Even trawling through source code doesn't work as all variables are named cryptically (presumably because those files are auto-generated?). I do wonder if this is because these are part of `net.minecraft` rather that `net.minecratforge` as Eclipse does provide me with some of that information (I have just not had the need to interact with that side of the API very much). Is there any proper documentation for `net.minecraft`? If so, where can I find it, and if not, where else can I find decent, preferably non-video tutorials or API references?
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.