Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Featured Replies

Posted

Hi,

I'm trying to make an animal entity, and I've looked at the code for standard animal models.

I've got no problem with the size for each part of the animal and the texture offset.

I can't get my head around the relation between the offsets in addBox and the coordinates supplied to setRotationPoint, so I can't get the blocks where I want them. 

I thought rotation point would be to do with movement and addBox to do with initial position, but changing the parameters to setRotationPoint seems to change where the block is positioned.

Can someone explain or point me at some documentation?

Thanks!

  • 6 years later...

Throughout a day i tried to understand what each variable does, and at the end of a day, i finally got it, but what EXACTLY (difference between) setRotationPoint and addBox does - idk

Alias for setRotationPoint = "srp", addBox = "ab"

-----------------NERD-TALK-----------------

SO, the most sussy value is Y-axis. Starting from srp, 24.0F - is height +0, meaning a starting point. in ab, 0.0F is also height +0. When you decrement srp or ab y-axis  values - you get height +1 with each -1, meaning you can interpretate same height in infinite ways, same for X axis but srp starting point is 0.0F, note that none of each applies to Z axis - it is 'normal'

For example, task: Place cube with dimensions 3, 3, 3 to coords -1.5, 6, -4.
My theory approach: Decrement cube Y dimension from ab value, and decrement srp value until satisfied(3 in this case).
I think X and Z axis do not need explanation, but still: you can set -1.5 and -4 to either srp or/and ab

-------------INTERESTING-PART-------------

this.head = new ModelRenderer((ModelBase)this, 0, 10)). addBox(-1.5f, -3.0f, -3.0f, 3, 3, 3);
# For X and Y axis - decrement its dimension to get position 0. To achieve -1.5 in X axis - add this reverted value to srp/ab (ab in this case)
this.head.setRotationPoint(0.0f, 21.0f, -2.0f); # Decrementing 3 to achieve "6" height (you can do so with ab value, but NOTE that i don't know the difference between both)
Edit: I Figured it out by playing with java entity class file for forge 1.7.10

Hope this helps someone if you went this far somehow ;)

Edited by Sputchik

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

Important Information

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

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.