Facebook Twitter YouTube Frictional Games | Forum | Privacy Policy | Dev Blog | Dev Wiki | Support | Gametee


Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
A collection of questions
MulleDK19 Offline
Senior Member

Posts: 545
Threads: 21
Joined: Jun 2009
Reputation: 10
#2
RE: A collection of questions

(09-21-2010, 08:46 PM)Alienchild Wrote: 1) In 3d Studio Max (2010) units, how tall is the character (camera) approx?
Hard to tell. You'll need to know the units used by HPL2, then set 3ds Max to use the same.

(09-21-2010, 08:46 PM)Alienchild Wrote: 2) I needed to rotate a wall I created in 3ds. How does the XYZ coords translate from 3ds to ModelEditor? Shouldn't they be the same?
HPL2 uses Maya coordinates (Y up). 3ds max has Z up.

(09-21-2010, 08:46 PM)Alienchild Wrote: 3) What is the conversion rate of 3d Studio Max units and LevelEditor units? The wall was 4x0,2x2 (width/breadth/height) and nowhere did it fit within the units of the LevelEditor.
See first answer I guess.

(09-21-2010, 08:46 PM)Alienchild Wrote: 5) I made a C# app that would (among other things) start the misc. exe files in the amnesia folder (using Process.Start("path")Wink. When I tried launching the LevelEditor I got some weird errors about not finding lots of folders. It might not exactly be a question for you devs but would you have any idea why?
Define the working directory.
string path = @"C:\Program Files\Amnesia - The Dark Descent\redist\LevelEditor.exe";
System.Diagnostics.Process p = new System.Diagnostics.Process();
p.StartInfo.FileName = path;
p.StartInfo.WorkingDirectory = System.IO.Path.GetDirectoryName(path);
p.Start();


If your C# app is in the same directory as the game/editor, you can use:
string path = System.IO.Path.Combine(Application.StartupPath, "LevelEditor.exe");
System.Diagnostics.Process p = new System.Diagnostics.Process();
p.StartInfo.FileName = path;
p.StartInfo.WorkingDirectory = Application.StartupPath;
p.Start();

[Image: 16455.png]
09-21-2010, 11:41 PM
Find


Messages In This Thread
A collection of questions - by Alienchild - 09-21-2010, 08:46 PM
RE: A collection of questions - by MulleDK19 - 09-21-2010, 11:41 PM
RE: A collection of questions - by Alienchild - 09-22-2010, 10:56 AM
RE: A collection of questions - by MulleDK19 - 09-22-2010, 11:08 AM



Users browsing this thread: 1 Guest(s)