gianama Posted November 15, 2011 Share Posted November 15, 2011 I tried ssg and sfsg as well, No error message, no nothing. :psyduck: Link to comment Share on other sites More sharing options...
ianpatt Posted November 15, 2011 Share Posted November 15, 2011 ShowScenegraph is one of many commands that are stubbed out and have empty handlers. Complete list of stubbed commands: console: ToggleSafeZoneToggleCollisionGeometryToggleMaterialGeometryToggleStairsGeometryToggleDebugTextTogglePrimitivesShowScenegraphShowScenegraph <- in there twice because of sfsg, didn't dump short namesShowAnimToggleNavMeshTogglePathLineSetLightingPassesToggleGrassUpdateCalcPathToPointSetImageSpaceGlowBetaCommentGameCommentToggleFullHelpCreateGrassAtPrintAiListHairTintTestAllCellsTestSeenDataTestLocalMapShowRenderPassesSetMemCheckPointGetMemCheckPointIncMemCheckPointOutputAllocationsAddWatchAddressRemoveWatchAddressSetTargetRefractionFireVisualRefPositionShowPivotToggleHDRDebugSetDebugTextRunMemoryPassShowWhoDetectsPlayerBeginTraceOutputLocalMapPicturesSetHudGlowConstantsSendSherlockDebugTextToggleFullScreenMotionBlurTogglePathingInfoFunctionToggleDebugDecalToggleMultiboundCheckToggleBoundVisGeomIgnoreRenderPassToggleActorMoverDrawSkeletonForceFileCacheToggleSPURenderBatchToggleSPUTransformUpdateToggleSPUCullingForceRSXCrashEvalActorTexturesCreateSaveDataCreateGameDataToggleHeapTrackingTogglePoolTrackingInstallMemoryTrackerUninstallMemoryTrackerCheckMemorySetStackDepthStartAIControlledRobotTestTestHandleManagerWarnAndKillSDMToggleEventLogExportPerfTrackingDataToggleGUIOverlayModifyGUIOverlaySetActionCompleteClearConsoleToggleMarkersKillAllProjectilesCellInfoTexturesTimingPolygonsActorsQuestParticlesMemoryShowNodesSaveDebugTextPagesOutputFixedStringTableToggleAudioOverlayTogglePapyrusLogToggleContextOverlayForceOutOfMemorySetWarningTestFadeNodesSetSubgraphToDebugHavokVDBCaptureIsInvulnerableExportInventoryItemInfoCollisionMeshToggleWaterCurrentGeometryStartTrackPlayerDoorsStopTrackPlayerDoorsCheckPlayerDoorsToggleSPUMovement script: SkipAnimIgnoreCrimeShowClassMenuGetIsClassDefaultGetClassDefaultMatchTrapUpdateEnableLinkedPathPointsDisableLinkedPathPointsShowViewerStringsStartMasterFileSeekDataDumpMasterFileSeekDataShowRepairMenuTriggerHUDShudderGetBroadcastStateGetPlayerNamePipBoyRadioOffAutoDisplayObjectivesForceRadioStationUpdateDisableAllMines Link to comment Share on other sites More sharing options...
throttlekitty Posted November 15, 2011 Author Share Posted November 15, 2011 Oh, well that settles that. Thanks ian and everyone else for trying to help :) I haven't been home much the past few days. After I eat and shower, i'll have the evening to get cracking on this. Link to comment Share on other sites More sharing options...
throttlekitty Posted November 15, 2011 Author Share Posted November 15, 2011 Little nif.xml update here. I'm far from done, but everything in the characters folder loads at least. Textures won't show on the models yet, I haven't investigated what needs to be changed for that. BSLightingshaderProperty is very messy, but filled with wonder.I found a special daedric armor mesh: "daedricarmorfx.nif" with a "BSLagBoneController", sounds very intersting. Anyone encounter this thing in-game yet? I'm curious what it does. It's a small node (in this file at least), I should have that updated soon. Link to comment Share on other sites More sharing options...
Ghogiel Posted November 15, 2011 Share Posted November 15, 2011 (edited) I'm wearing daedric.... Lag bone controller... nope. I guess looking at it it has to do with some sort of black smoke fx.. it's attached to the head, but I haven't seen any smoke fx. Maybe it's to do with dremora...which I haven't scene yet... :psyduck: anyway... awesome. I can get to modding semi properly now :biggrin: Edited November 15, 2011 by Ghogiel Link to comment Share on other sites More sharing options...
DragoonWraith Posted November 15, 2011 Share Posted November 15, 2011 Just wanted to comment, that this is really impressive and exciting! Link to comment Share on other sites More sharing options...
throttlekitty Posted November 17, 2011 Author Share Posted November 17, 2011 (edited) !A) Sexy.B) They also use the Lag bone. The fire trail behind her is what's being done. The actual model looks a bit like a flat caterpillar, fairly short, with a bunch of cards for the flame spurts. These cards stretch out and follow behind character movement. Aside from the controller, the mesh is just weighted to the designated bones per usual. Edited November 17, 2011 by throttlekitty Link to comment Share on other sites More sharing options...
NeoG Posted November 17, 2011 Share Posted November 17, 2011 (edited) I was looking at the normal maps for skyrim last night, It looks like they have moved from tangent space to object space normals for skyrim. As I understand it's much faster to render object space normals, with a decrease in quality when the mesh is deformed, and a decrease in compressibility (the cause of blocky lighting on faces) I have managed to convert skyrims normal maps to tangent space (oblivion format) and back for easier editing. The conversion requires the mesh in OBJ format, exported from the nif (thanks throttlekitty for the updated xml!), and any part of the nif that isn't UV mapped to the texture has to be removed (I.E a separate texture) or the conversion will crash out. This can be done with xNormal I have also taken notes of the X,Y,Z channels in the normal maps and where they need to be changed for conversion in xNormal or for use in blender (and back to the game), because the game also seems to use channels differently I can post my notes after work later if anyone wants them. Should be useful for making better high poly snow texture normals and such! Also: the engline seems to have no problems loading 4k x 4k textures.. the potential for increase in texture quality is huge (and also the increase in VRAM) Edited November 17, 2011 by NeoG Link to comment Share on other sites More sharing options...
Ghogiel Posted November 17, 2011 Share Posted November 17, 2011 Ah yeah, I see now. I've been looking at the flame trail in game crap loads :).. thinking about how it's done. I was thinking its a particle system. :whistling: Link to comment Share on other sites More sharing options...
Ghogiel Posted November 17, 2011 Share Posted November 17, 2011 I was looking at the normal maps for skyrim last night, It looks like they have moved from tangent space to object space normals for skyrim. As I understand it's much faster to render object space normals, with a decrease in quality when the mesh is deformed, and a decrease in compressibility (the cause of blocky lighting on faces) I have managed to convert skyrims normal maps to tangent space (oblivion format) and back for easier editing. The conversion requires the mesh in OBJ format, exported from the nif (thanks throttlekitty for the updated xml!), and any part of the nif that isn't UV mapped to the texture has to be removed (I.E a separate texture) or the conversion will crash out. This can be done with xNormal Nspace is a little tool that does the exact same thing. have also taken notes of the X,Y,Z channels in the normal maps and where they need to be changed for conversion in xNormal or for use in blender (and back to the game), because the game also seems to use channels differentlyI assume it's still max normal map orientation. which I am pretty sure is +x -y +z Link to comment Share on other sites More sharing options...
Recommended Posts