Jump to content
  • Home
  • Files
  • Docs
Topics
  • All Content

  • This Topic
  • This Forum

  • Advanced Search
  • Existing user? Sign In  

    Sign In



    • Not recommended on shared computers


    • Forgot your password?

  • Sign Up
  • All Activity
  • Home
  • Mod Developer Central
  • Modder Support
  • Change Minecraft buttons with images.
Currently Supported: 1.16.X (Latest) and 1.15.X (LTS)
Sign in to follow this  
Followers 1
HuskyHMC

Change Minecraft buttons with images.

By HuskyHMC, July 18, 2017 in Modder Support

  • Reply to this topic
  • Start new topic

Recommended Posts

HuskyHMC    0

HuskyHMC

HuskyHMC    0

  • Tree Puncher
  • HuskyHMC
  • Members
  • 0
  • 23 posts
Posted July 18, 2017

Hello there everyone. I have a problem with coding my mod. I wanna can change minecraft buttons ( http://prntscr.com/fxbqzg ) with a image ( like : http://prntscr.com/fxbrcc ). So when I will press the image I should be send in the SinglePlayerGUI. How Can I do that? How I can add image and to do that action? 

 

Thank you in advance!

  • Quote

Share this post


Link to post
Share on other sites

Animefan8888    741

Animefan8888

Animefan8888    741

  • Reality Controller
  • Animefan8888
  • Forge Modder
  • 741
  • 6157 posts
Posted July 18, 2017
3 minutes ago, HuskyHMC said:

Hello there everyone. I have a problem with coding my mod. I wanna can change minecraft buttons ( http://prntscr.com/fxbqzg ) with a image ( like : http://prntscr.com/fxbrcc ). So when I will press the image I should be send in the SinglePlayerGUI. How Can I do that? How I can add image and to do that action? 

 

Thank you in advance!

If I got this right you are asking how you can change what the button looks like. Make a class that extends GuiButton and override GuiButton#drawButton to instead use your image.

  • Quote

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect.

Forge and vanilla BlockState generator.

Share this post


Link to post
Share on other sites

HuskyHMC    0

HuskyHMC

HuskyHMC    0

  • Tree Puncher
  • HuskyHMC
  • Members
  • 0
  • 23 posts
Posted July 18, 2017
8 minutes ago, Animefan8888 said:

If I got this right you are asking how you can change what the button looks like. Make a class that extends GuiButton and override GuiButton#drawButton to instead use your image.

Can you create the GuiButton#drawButton for me? How should be that if i want to add that image? 

  • Quote

Share this post


Link to post
Share on other sites

Animefan8888    741

Animefan8888

Animefan8888    741

  • Reality Controller
  • Animefan8888
  • Forge Modder
  • 741
  • 6157 posts
Posted July 18, 2017
Just now, HuskyHMC said:

Can you create the GuiButton#drawButton for me?

No, I will not write your code for you.

Just now, HuskyHMC said:

How should be that if i want to add that image?

Take a look at GuiButton

  • Quote

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect.

Forge and vanilla BlockState generator.

Share this post


Link to post
Share on other sites

HuskyHMC    0

HuskyHMC

HuskyHMC    0

  • Tree Puncher
  • HuskyHMC
  • Members
  • 0
  • 23 posts
Posted July 18, 2017
1 minute ago, Animefan8888 said:

No, I will not write your code for you.

Take a look at GuiButton

http://prntscr.com/fxc1ff http://prntscr.com/fxc1kf but nothing is showing up

  • Quote

Share this post


Link to post
Share on other sites

Animefan8888    741

Animefan8888

Animefan8888    741

  • Reality Controller
  • Animefan8888
  • Forge Modder
  • 741
  • 6157 posts
Posted July 18, 2017
2 minutes ago, HuskyHMC said:

http://prntscr.com/fxc1ff http://prntscr.com/fxc1kf but nothing is showing up

Your ResourceLocation is pointing to the minecraft domain and not your mods domain aka the modid.

  • Quote

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect.

Forge and vanilla BlockState generator.

Share this post


Link to post
Share on other sites

HuskyHMC    0

HuskyHMC

HuskyHMC    0

  • Tree Puncher
  • HuskyHMC
  • Members
  • 0
  • 23 posts
Posted July 18, 2017
41 minutes ago, Animefan8888 said:

Your ResourceLocation is pointing to the minecraft domain and not your mods domain aka the modid.

It is pointing to the minecraft domain

  • Quote

Share this post


Link to post
Share on other sites

Animefan8888    741

Animefan8888

Animefan8888    741

  • Reality Controller
  • Animefan8888
  • Forge Modder
  • 741
  • 6157 posts
Posted July 18, 2017
2 minutes ago, HuskyHMC said:

It is pointing to the minecraft domain

Where is your image?

  • Quote

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect.

Forge and vanilla BlockState generator.

Share this post


Link to post
Share on other sites

HuskyHMC    0

HuskyHMC

HuskyHMC    0

  • Tree Puncher
  • HuskyHMC
  • Members
  • 0
  • 23 posts
Posted July 18, 2017
2 minutes ago, Animefan8888 said:

Where is your image?

assets/textures/gui

  • Quote

Share this post


Link to post
Share on other sites

Animefan8888    741

Animefan8888

Animefan8888    741

  • Reality Controller
  • Animefan8888
  • Forge Modder
  • 741
  • 6157 posts
Posted July 18, 2017
Just now, HuskyHMC said:

assets/textures/gui

There is no domain there. It needs to be assets/modid(your mods id)/textures/gui. And your ResourceLocation needs to be initialized like so new ResourceLocation(modid, "textures/gui...")

  • Quote

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect.

Forge and vanilla BlockState generator.

Share this post


Link to post
Share on other sites

HuskyHMC    0

HuskyHMC

HuskyHMC    0

  • Tree Puncher
  • HuskyHMC
  • Members
  • 0
  • 23 posts
Posted July 18, 2017
10 minutes ago, Animefan8888 said:

There is no domain there. It needs to be assets/modid(your mods id)/textures/gui. And your ResourceLocation needs to be initialized like so new ResourceLocation(modid, "textures/gui...")

still not working

  • Quote

Share this post


Link to post
Share on other sites

Animefan8888    741

Animefan8888

Animefan8888    741

  • Reality Controller
  • Animefan8888
  • Forge Modder
  • 741
  • 6157 posts
Posted July 18, 2017
Just now, HuskyHMC said:

still not working

Show me a screenshot of your package explorer and your code for the button. And where you add the button to the Gui.

  • Quote

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect.

Forge and vanilla BlockState generator.

Share this post


Link to post
Share on other sites

HuskyHMC    0

HuskyHMC

HuskyHMC    0

  • Tree Puncher
  • HuskyHMC
  • Members
  • 0
  • 23 posts
Posted July 18, 2017
1 minute ago, Animefan8888 said:

Show me a screenshot of your package explorer and your code for the button. And where you add the button to the Gui.

https://justpaste.it/193cn this is my button code

  • Quote

Share this post


Link to post
Share on other sites

Kokkie    55

Kokkie

Kokkie    55

  • Dragon Slayer
  • Kokkie
  • Forge Modder
  • 55
  • 796 posts
Posted July 18, 2017
15 minutes ago, Animefan8888 said:

And your ResourceLocation needs to be initialized like so new ResourceLocation(modid, "textures/gui...")

 

  • Quote

Classes: 94

Lines of code: 12173

Other files: 206

Github repo: https://github.com/KokkieBeer/DeGeweldigeMod

Share this post


Link to post
Share on other sites

Animefan8888    741

Animefan8888

Animefan8888    741

  • Reality Controller
  • Animefan8888
  • Forge Modder
  • 741
  • 6157 posts
Posted July 18, 2017
3 minutes ago, HuskyHMC said:

https://justpaste.it/193cn this is my button code

You did not really do anything i said...

1 hour ago, Animefan8888 said:

Make a class that extends GuiButton and override GuiButton#drawButton to instead use your image.

And

17 minutes ago, Animefan8888 said:

There is no domain there. It needs to be assets/modid(your mods id)/textures/gui. And your ResourceLocation needs to be initialized like so new ResourceLocation(modid, "textures/gui...")

 

  • Quote

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect.

Forge and vanilla BlockState generator.

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

    • Insert image from URL
×
  • Desktop
  • Tablet
  • Phone
Sign in to follow this  
Followers 1
Go To Topic Listing



  • Recently Browsing

    No registered users viewing this page.

  • Posts

    • cadbane86140
      Minecraft: Cereal UHC Season 2 Episode 5- THE FINALE!

      By cadbane86140 · Posted 5 minutes ago

      Hello There! A bit of a late upload due to technical issues but ITS UP! So after a week of Cereal UHC we have finally reached the end of it! I am so thankful to be apart of this series and I can't wait for the next season! There are so many hilarious moments especially during the final battle! I hope you all enjoyed this series and if you did don't forget to like and sub for more!  
    • samjviana
      [1.16.5] How to make EnchantedBook go to Custom ItemGroup

      By samjviana · Posted 23 minutes ago

      But how can i do that for an enchantment book, for normal items i was able to do that by calling the function "group" as you said, but with the enchantment seems to be different.
    • poopoodice
      [1.16.5] How to make EnchantedBook go to Custom ItemGroup

      By poopoodice · Posted 1 hour ago

      Just create an instance of ItemGroup, and set the group of the item in the item property builder.
    • poopoodice
      Trying to make a crop have an "X" shape model

      By poopoodice · Posted 1 hour ago

      Check the parent of their block model.
    • LexManos
      Forge says this file does not have an app associated with it.

      By LexManos · Posted 1 hour ago

      Some zip managers like to take control of the .jar file extension away from Java. Make sure you have Java installed and try running Jarfix once, then try the installer again.
  • Topics

    • cadbane86140
      0
      Minecraft: Cereal UHC Season 2 Episode 5- THE FINALE!

      By cadbane86140
      Started 5 minutes ago

    • samjviana
      2
      [1.16.5] How to make EnchantedBook go to Custom ItemGroup

      By samjviana
      Started 3 hours ago

    • TheMajorN
      1
      Trying to make a crop have an "X" shape model

      By TheMajorN
      Started 2 hours ago

    • ESCCarp
      3
      Forge says this file does not have an app associated with it.

      By ESCCarp
      Started 5 hours ago

    • hammy3502
      0
      [1.16.4] Fluid Flowing Very Oddly

      By hammy3502
      Started 2 hours ago

  • Who's Online (See full list)

    • digital_trucker
    • Caseofgames
    • Pickle_Face5
    • cadbane86140
    • LiliToBreazy
    • Kaeso
    • DerangedPenguins
    • LSMGaming
    • PyRoTheLifeLess
    • PtownCoderSchool
    • konenala21
    • samjviana
  • All Activity
  • Home
  • Mod Developer Central
  • Modder Support
  • Change Minecraft buttons with images.
  • Theme

Copyright © 2019 ForgeDevelopment LLC · Ads by Longitude Ads LLC Powered by Invision Community