How do I import textures?
Moderators: GZDoom Developers, Raze Developers
Forum rules
Before asking on how to use a ZDoom feature, read the ZDoom wiki first. If you still don't understand how to use a feature, then ask here.
Before asking on how to use a ZDoom feature, read the ZDoom wiki first. If you still don't understand how to use a feature, then ask here.
-
- Posts: 6
- Joined: Mon Jul 12, 2021 7:26 pm
How do I import textures?
How do I make it so I don't have to open the resource archive every time I open the file. I already put the WADS into the ZIP archive, but I still have to upload the resources every time.
You do not have the required permissions to view the files attached to this post.
-
-
- Posts: 4069
- Joined: Thu Jul 17, 2003 12:19 am
- Location: British Columbia, Canada
Re: How do I import textures?
I assume that your map is in a GZDoom mapping format.
Loading any custom resource pwad, such as the texture pack pwad HereticIITex.wad, along side with your pwad into a map editor, let's you use the textures from the texture pack, but you are not really transferring the texture itself, you are just affixing the texture name.
To prevent you from having to load both, your pwad and the texture pack pwad, every time you want to play your pwad with GZDoom, you need to load your pwad and the texture pack pwad into a lump editor, such as Slade3.
Then highlight every lump in the texture pack pwad and copy/paste them into your pwad, adding them at the end of the listed lumps.
Save your pwad.
Loading any custom resource pwad, such as the texture pack pwad HereticIITex.wad, along side with your pwad into a map editor, let's you use the textures from the texture pack, but you are not really transferring the texture itself, you are just affixing the texture name.
To prevent you from having to load both, your pwad and the texture pack pwad, every time you want to play your pwad with GZDoom, you need to load your pwad and the texture pack pwad into a lump editor, such as Slade3.
Then highlight every lump in the texture pack pwad and copy/paste them into your pwad, adding them at the end of the listed lumps.
Save your pwad.
-
- Posts: 6
- Joined: Mon Jul 12, 2021 7:26 pm
Re: How do I import textures?
So there isn't a way to just have those textures be permanently I the folder? Did I understand correctly, or do I have to load all the resources every time
-
-
- Posts: 4069
- Joined: Thu Jul 17, 2003 12:19 am
- Location: British Columbia, Canada
Re: How do I import textures?
In that case, let me try to clarifyhoobie_human wrote:So there isn't a way to just have those textures be permanently I the folder? Did I understand correctly, or do I have to load all the resources every time
This goes for Slade3, Ultimate Doom Builder or any other map editor.
You loaded your pwad into Slade3, and loaded two other pwads, bloodrpb1.wad and hereticIItex.wad as resources. Now, what happens when you select textures or flats from the resources, the actual textures or flats are not transferred into your pwad. Only the name of the resources are stored in your pwad by the map editor.Kappes Buur wrote: Loading any custom resource pwad, such as the texture pack pwad HereticIITex.wad, along side with your pwad into a map editor, let's you use the textures from the texture pack, but you are not really transferring the texture itself, you are just affixing the texture name.
Testing your pwad now with GZDoom, all selected textures or flats are shown in GZDoom, because all three pwads are available to GZDoom through the map editor.
Therefore, if anyone else wants to play your pwad, you have to stipulate that your map is only playable when the resource pwads are loaded as well.
To make your pwad playable with GZDoom without having to load the resource pwads, you have copy/paste the actual textures or flats from the resource pwads into your pwad.Kappes Buur wrote: To prevent you from having to load both, your pwad and the texture pack pwad, every time you want to play your pwad with GZDoom, you need to load your pwad and the texture pack pwad into a lump editor, such as Slade3.
Then highlight every lump in the texture pack pwad and copy/paste them into your pwad, adding them at the end of the listed lumps.
Save your pwad.
That is done with Slade3, the lump editor.
Load all 3 pwads into Slade3.
Then open your pwad, and at the bottom of the lump list insert 2 new entries, TX_START and TX_END.
Then open either of the two resource pwads and copy/paste any or all textures/flats into your pwad between the TX_ markers.
Then do the same with the other resource pwad.
Save your pwad.
Now you can play your pwad with GZDoom and all textures/flats you have selected through the map editor will be displayed.
However, copy/pasting all texture/flats from the resource pwads may inflate the size of your pwad. You could go and find out which of the textures/flats were used in your pwad and whittle down the unused textures/flats. But that process is rather tedious.