Here's is a half-size sprite sheet for Eternity Port ships and stations:
http://multiverse.kronosaur.com/file.he ... rImage.jpg
Eternity Port Sprite Sheet *Spoilers*
-
- Developer
- Posts: 2998
- Joined: Thu Jul 24, 2003 9:53 pm
- Contact:
- Aury
- Fleet Admiral
- Posts: 5510
- Joined: Tue Feb 05, 2008 1:10 am
- Location: At the VSS Shipyards in the frontier, designing new ships.
How do you get transdata to output images like that? I know the one for ships that have 'genericClass' as an attribute, but not all the images
(shpOrder gPlayership 'barrelRoll)
<New tutorials, modding resources, and official extension stuff coming to this space soon!>
<New tutorials, modding resources, and official extension stuff coming to this space soon!>
-
- Developer
- Posts: 2998
- Joined: Thu Jul 24, 2003 9:53 pm
- Contact:
I used:Wolfy wrote:How do you get transdata to output images like that? I know the one for ships that have 'genericClass' as an attribute, but not all the images
Code: Select all
transdata /typeimages /debug /adventure:0x900000 /criteria:"st +extension:0x910000" /width:1550 /all
/debug is necessary if you want it to look at XML instead of TDBs.
/adventure is to point to Eternity Port. For SotP, this is unnecessary.
/criteria determines the types to return. This is the same syntax as typFind. "s" and "t" are for ships and stations, respectively. "+extension" is to only return types in a given library (NearsStarsVol01, in this case). Otherwise it would also return core types.
/width is the output width of the image
/all is necessary to include non-generic stations and ships [/all also works on /shipimages to include non generic classes.]
- Aury
- Fleet Admiral
- Posts: 5510
- Joined: Tue Feb 05, 2008 1:10 am
- Location: At the VSS Shipyards in the frontier, designing new ships.
o.o thanks - is there a place wher eall these are documented?
(shpOrder gPlayership 'barrelRoll)
<New tutorials, modding resources, and official extension stuff coming to this space soon!>
<New tutorials, modding resources, and official extension stuff coming to this space soon!>
-
- Developer
- Posts: 2998
- Joined: Thu Jul 24, 2003 9:53 pm
- Contact:
/? for each command generally gives help, but that's it.Wolfy wrote:o.o thanks - is there a place wher eall these are documented?
- Aury
- Fleet Admiral
- Posts: 5510
- Joined: Tue Feb 05, 2008 1:10 am
- Location: At the VSS Shipyards in the frontier, designing new ships.
ah ok, i was using /help <command> but that wasnt working
(shpOrder gPlayership 'barrelRoll)
<New tutorials, modding resources, and official extension stuff coming to this space soon!>
<New tutorials, modding resources, and official extension stuff coming to this space soon!>