[Searching] Space Station & Space Ship MD2 models
Forum rules
Before asking on how to use a ZDoom feature, read the ZDoom wiki first. This forum is archived - please use this set of forums to ask new questions.
Before asking on how to use a ZDoom feature, read the ZDoom wiki first. This forum is archived - please use this set of forums to ask new questions.
- Tormentor667
- Posts: 13556
- Joined: Wed Jul 16, 2003 3:52 am
- Preferred Pronouns: He/Him
- Operating System Version (Optional): Windows 11
- Graphics Processor: nVidia (Modern GZDoom)
- Location: Germany
- Contact:
[Searching] Space Station & Space Ship MD2 models
Does anyone have access to MD2s like that? I am mostly looking for large space stations and smaller space ships that I can implement in some atmospheric skyboxes.
Re: [Searching] Space Station & Space Ship MD2 models
I have a few from a variety of sources. Some are a bit scrappy looking though (very low poly, ugly skins).


-
- Posts: 3975
- Joined: Fri Jul 06, 2007 9:16 am
Re: [Searching] Space Station & Space Ship MD2 models
Nice, you've got quite a fleet there
What's the red and grey one in the middle?

What's the red and grey one in the middle?
Re: [Searching] Space Station & Space Ship MD2 models
Not really sure. I don't even remember where I found it. I know I modified it a bit. I use it as a little escape shuttle craft in my own modified version of one of ReX's "Darkest Hour" maps:CaptainToenail wrote:What's the red and grey one in the middle?


- Tormentor667
- Posts: 13556
- Joined: Wed Jul 16, 2003 3:52 am
- Preferred Pronouns: He/Him
- Operating System Version (Optional): Windows 11
- Graphics Processor: nVidia (Modern GZDoom)
- Location: Germany
- Contact:
Re: [Searching] Space Station & Space Ship MD2 models
Awesome, I already found what I might need: Any chance of getting the the large spike like space station in the background and the UT space fighters on the right shared? 

- .+:icytux:+.
- Posts: 2661
- Joined: Thu May 17, 2007 1:53 am
- Location: Finland
Re: [Searching] Space Station & Space Ship MD2 models
i want them all ! 

-
- Posts: 3975
- Joined: Fri Jul 06, 2007 9:16 am
Re: [Searching] Space Station & Space Ship MD2 models
Lol, dog fight in space multiplayer mod Icytux? nudge nudge 
Also I have some ships from Quake 2 and expansions

Also I have some ships from Quake 2 and expansions
Spoiler:Can someone provide a template wad so I can work out how to import 3D models into Doom easily?
Re: [Searching] Space Station & Space Ship MD2 models
Oh, I've got the first two in that screenshot, but not the last one. Does that come from the mission pack?
To get the models into a GZdoom mod, you need to write a modeldef for them.
http://zdoom.org/wiki/MODELDEF
Either one of the first two definitions will do as a basic template. Use the first one if you know the frame name used insode the MD2 model. Use the second one if you don't know the name or its a format that doesn't have a name (md3)
A typical example of the first one would be something like this:
or, alternatively
You can't put models in a WAD. They need to be in a zip/pk3 and typically you would put them in a subdir called "models" (as specified in the path statement in the examples).
To get the models into a GZdoom mod, you need to write a modeldef for them.
http://zdoom.org/wiki/MODELDEF
Either one of the first two definitions will do as a basic template. Use the first one if you know the frame name used insode the MD2 model. Use the second one if you don't know the name or its a format that doesn't have a name (md3)
A typical example of the first one would be something like this:
Code: Select all
ACTOR MyCoolActor
{
Radius 20
Height 56
States
{
Spawn:
POSS A 3
Loop
}
}
Code: Select all
Model MyCoolActor
{
Path "Models"
Model 0 "cool.md2"
Skin 0 "cool.png"
Scale 1.0 1.0 1.0
Frame POSS A 0 "frame01"
}
Code: Select all
Model MyCoolActor
{
Path "Models"
Model 0 "cool.md3"
Skin 0 "cool.png"
Scale 1.0 1.0 1.0
FrameIndex POSS A 0 0
}
Re: [Searching] Space Station & Space Ship MD2 models
Those ships are awesome 

- .+:icytux:+.
- Posts: 2661
- Joined: Thu May 17, 2007 1:53 am
- Location: Finland
Re: [Searching] Space Station & Space Ship MD2 models
why not!CaptainToenail wrote:Lol, dog fight in space multiplayer mod Icytux? nudge nudge

i have the code for space ships so.