Upload
ST:BC Problems, Errors and Help Bridge Commander not working? Dissapearing mods? Blank Screen of Death? Porblems with QBR, BCMP, foundation, or BCMI? In here!"
February 11th, 2005
#11 Slightly cooler than a n00b
Join Date: April 14th, 2004
Rep Power: 0
Re: Help with NX-01 Nacelle Hmmm. I opened the py file and found this:
import App
import Multiplayer.SpeciesToShip
def GetShipStats():
kShipStats = {
"FilenameHigh": "data/Models/Ships/NX01-Enterprise/nx01.nif",
"FilenameMed": "data/Models/Ships/NX01-Enterprise/nx01Med.nif",
"FilenameLow": "data/Models/Ships/NX01-Enterprise/nx01Low.nif",
"Name": "NX01Enterprise",
"HardpointFile": "NX01Enterprise",
"Species": Multiplayer.SpeciesToShip.AMBASSADOR
}
return kShipStats
def LoadModel(bPreLoad = 0):
pStats = GetShipStats()
# Create the LOD info
if (not App.g_kLODModelManager.Contains(pStats["Name"])):
# Params are: File Name, PickLeafSize, SwitchOut Distance,
# Surface Damage Res, Internal Damage Res, Burn Value, Hole Value,
# Search String for Glow, Search string for Specular, Suffix for specular
pLODModel = App.g_kLODModelManager.Create(pStats["Name"])
pLODModel.AddLOD(pStats["FilenameHigh"], 12, 220.0, 15.0, 15.0, 400, 900, "_glow", None, "_specular")
pLODModel.AddLOD(pStats["FilenameMed"], 12, 420.0, 15.0, 15.0, 400, 900, "_glow", None, "_specular")
pLODModel.AddLOD(pStats["FilenameLow"], 12, 820.0, 15.0, 30.0, 400, 900, "_glow", None, None)
# kDebugObj = App.CPyDebug()
if (bPreLoad == 0):
pLODModel.Load()
# kDebugObj.Print("Loading " + pStats["Name"] + "\n")
else:
pLODModel.LoadIncremental()
# kDebugObj.Print("Queueing " + pStats["Name"] + " for pre-loading\n")
def PreLoadModel():
LoadModel(1)
I see 'Hole Value', but I don't see a number next to it.
February 12th, 2005
#12 Bridge Commander Master HPer
Join Date: October 26th, 2002
Location: UK
Status: Working WAY too hard.
Rep Power: 29
Re: Help with NX-01 Nacelle The entries in the description relate to the numerical entries below it;
Code:
# Params are: File Name, PickLeafSize, SwitchOut Distance,
# Surface Damage Res, Internal Damage Res, Burn Value, Hole Value,
# Search String for Glow, Search string for Specular, Suffix for specular
pLODModel.AddLOD(pStats["FilenameHigh"], 12, 220.0, 15.0, 15.0, 400, 900, "_glow", None, "_specular") In this instance the Hole Value is 400.
A lower number is a smaller hole.
You may also want to change the internal and external damage res's.
February 12th, 2005
#13 Slightly cooler than a n00b
Join Date: April 14th, 2004
Rep Power: 0
Re: Help with NX-01 Nacelle I changed that to this:
# Surface Damage Res, Internal Damage Res, Burn Value, Hole Value,
# Search String for Glow, Search string for Specular, Suffix for specular
pLODModel = App.g_kLODModelManager.Create(pStats["Name"])
pLODModel.AddLOD(pStats["FilenameHigh"], 9, 120.0, 9.0, 9.0, 90, 300, "_glow", None, "_specular")
pLODModel.AddLOD(pStats["FilenameMed"], 12, 420.0, 15.0, 15.0, 400, 900, "_glow", None, "_specular")
pLODModel.AddLOD(pStats["FilenameLow"], 11, 810.0, 14.0, 30.0, 300, 8500, "_glow", None, None)
And it still didn't work. I might not be fixable. Something could be wrong with the 3D model.
February 13th, 2005
#14 Bridge Commander Master HPer
Join Date: October 26th, 2002
Location: UK
Status: Working WAY too hard.
Rep Power: 29
Re: Help with NX-01 Nacelle Depends which res your running at, try something around 10 for the hole value, 90 is still quite large. Other than that your probably right about it being a problem with the mesh
February 13th, 2005
#15 Slightly cooler than a n00b
Join Date: April 14th, 2004
Rep Power: 0
Re: Help with NX-01 Nacelle I spen an hour tweaking the numbers and all. It's more than likely a mesh problem. Thank you for trying to help.
Thread Tools Display Modes Linear Mode
Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
Similar Threads Thread Thread Starter Forum Replies Last Post nacelle bug fix ranger6135 STL Problems, Errors and Help 3 December 1st, 2008 07:05 AM nacelle bug fix ranger6135 STL Problems, Errors and Help 3 November 27th, 2008 02:36 PM Warp nacelle Detachment roper34 Bridge Commander General Yib-Yab (Off Topic) 26 July 20th, 2006 05:09 AM Nacelle Questions lostmyunimatrix ST:A2 Modding, Mapping and Editing 3 September 9th, 2004 01:39 AM The Third Nacelle? Dursk Starbase 42 14 May 30th, 2004 10:29 AM
All times are GMT -7.