i like the two-tone look.
what's that dark line on the red of the "arm", just about central in the top pic? i can't tell if it's some stray polys that might need cleaning or just a bit of overpainting.
as for spawning, i use a simple script when i'm testing :-
Code: Select all
// Configuration -- customize here
this.role = "testship";
this.count = 1;
// Standard attributes
this.name = "Spawn-" + this.role;
this.author = "Jens Ayton";
this.copyright = "This script is hereby placed in the public domain.";
this.version = "1.0.1";
this.description = "Script to make several ships of a given role appear outside the station upon launching."
this.shipWillLaunchFromStation = function()
{
system.legacy_addSystemShips(this.role, this.count, 1.0);
log("testscript.spawn", "Generated " + this.count + " " + this.role + " for testing purposes.");
}
in your shipdata, include "testship" in your ship's roles and when you launch one will be spawned in the near vicinity. you can of course change the
shipwilllaunch command to the
shipwillexitwitchspace one, (change the 1.0 at the end of the addsystemships bit to 0.1 or so) if you want to see it in flight and follow it around to check details etc
proper scripting can be more complex, obviously, but this will get a ship into the game so you can check the look and placement of exhausts etc.