Jump to content

Using vanilla resources


Zgron

Recommended Posts

Hi I'm trying to make a kind of volcanic lava that will flow differently. To begin with I can't find the water block or lava block class to use extend from or use as a template or refernse point if that is how you implement fluids in forge and if someone could contribute to some informations about how to make fluids, that would be apprecited.

 

Anyway as the topic I would like to use the same texture that is used in vanilla minecraft for the lava block. However I've done some testing and thought that it would be fine using new ResourceLocation("minecraft", "lava_still") and just use the minecraft assets, but that don't seem to work and forge complains.

 

I don't want to copy the resources and put them in my own resource folder since I want it to take the same appearance as lava even if a resourcepack would be used.

 

Are there any simple way to do this or is it possible to copy the resources I want from the net/minecraft at initialization? In that case I'm unsure about the root folder.

Link to comment
Share on other sites

Sorry for the late response. I found the problem. I was doing new ResourceLocation("minecraft", [resource path]); but i found that the first parameter is actually mod id. And I suppose minecraft ain't defined as a forge mod right? :P so I used new ResourceLocation("minecraft/[the rest of the path]");

Link to comment
Share on other sites

Sorry for the late response. I found the problem. I was doing new ResourceLocation("minecraft", [resource path]); but i found that the first parameter is actually mod id. And I suppose minecraft ain't defined as a forge mod right? :P so I used new ResourceLocation("minecraft/[the rest of the path]");

 

HAHAHAaaaaa xD laugh of the night right there. good stuff *high five*.

I'll give some applause.

Link to comment
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.
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...

×   Pasted as rich text.   Restore formatting

  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.

Announcements



×
×
  • Create New...

Important Information

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