How do you change how an item is held in your hand?

Started by Matt The Banana on

Topic category: Help with modding (Java Edition)

Last seen on 00:53, 14. Mar 2024
Joined Sep 2018
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
How do you change how an item is held in your hand?

How do you change how an item is held in your hand?

Last seen on 14:43, 2. Aug 2022
Joined Nov 2018
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
In what cases? A custom…
Sun, 04/21/2019 - 11:45

In what cases? A custom model or a normal texture?

Last seen on 00:53, 14. Mar 2024
Joined Sep 2018
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Custom models
Sun, 04/21/2019 - 16:42

Custom models

Last seen on 00:53, 14. Mar 2024
Joined Sep 2018
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
A normal texture. For more…
Mon, 04/29/2019 - 04:08

A normal texture. For more context, I want to change the rotation of it when it is in your hand.

Last seen on 03:51, 31. Jul 2023
Joined Apr 2015
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
The only thing you could…
Sun, 05/26/2019 - 05:27

The only thing you could really do is draw the item at a different angle.

Last seen on 00:53, 14. Mar 2024
Joined Sep 2018
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
I meant model-wise.
Sun, 05/26/2019 - 05:32

I meant model-wise.

Last seen on 12:29, 22. Dec 2021
Joined Mar 2016
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
"display": { "gui":…
Sun, 05/26/2019 - 10:31
"display": {

        "gui": {

            "rotation": [ 30, 225, 0 ],

            "translation": [ 0, 0, 0],

            "scale":[ 0.625, 0.625, 0.625 ]

    	},
        
    	"ground": {

            "rotation": [ 0, 0, 0 ],

            "translation": [ 0, 3, 0],

            "scale":[ 0.25, 0.25, 0.25 ]

    	},

    	"fixed": {

            "rotation": [ 0, 0, 0 ],

            "translation": [ 0, 0, 0],

            "scale":[ 0.5, 0.5, 0.5 ]

    	},
        
        "thirdperson_righthand": {

            "rotation": [ 75, 45, 0 ],

            "translation": [ 0, 2.5, 0],

            "scale": [ 0.375, 0.375, 0.375 ]

 	},
        
        "firstperson_righthand": {

            "rotation": [ 0, 135, 0 ],

            "translation": [ 0, 0, 0 ],
 
           "scale": [ 0.40, 0.40, 0.40 ]
   
    	},
        
    	"firstperson_lefthand": {

            "rotation": [ 0, 135, 0 ],

            "translation": [ 0, 0, 0 ],

            "scale": [ 0.40, 0.40, 0.40 ]

    	}

    }

Add this Array into your .json file

Now you can play with the values "rotation"

Note: The values right now are the standard values of a block-item

Last seen on 03:51, 31. Jul 2023
Joined Apr 2015
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
I didn't realize you said…
Sun, 05/26/2019 - 17:23

I didn't realize you said model-wise.

Last seen on 00:53, 14. Mar 2024
Joined Sep 2018
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Thank You!
Tue, 06/11/2019 - 01:30

Thank You!