Source SDK Known Issues: Difference between revisions
(Updated page to remove fixed issues.) |
|||
Line 41: | Line 41: | ||
=== 3D View In Hammer Appears Empty (Since 8/4/2006)=== | === 3D View In Hammer Appears Empty (Since 8/4/2006)=== | ||
The newest release of Hammer requires that at least on Camera be placed in the map in order for the 3D Views to work. If you are experiencing empty 3D views simply place a camera in your map. | The newest release of Hammer requires that at least on Camera be placed in the map in order for the 3D Views to work. If you are experiencing empty 3D views simply [[Hammer_Camera_Tool|place a camera]] in your map. | ||
=== Error When Running Maps from Within A Mod (Since 8/4/2006)=== | === Error When Running Maps from Within A Mod (Since 8/4/2006)=== |
Revision as of 09:26, 17 November 2006
This is a list of known and verified issues with the Source SDK release, and potential workarounds.
General Issues
Visual Studio 2002 Is No Longer Supported (Since 8/4/2006)
As of this SDK Release Visual Studio 2002 is no longer supported. We are sorry for the inconvenience that this causes our customers.
For those who are brave there is a patch that allows for VS 2002 compilation.

Tools Issues
Hammer Issues
Direct Shortcuts to Hammer Will Not Work (Since 8/4/2006)
With this version of the SDK you will get an error if you attempt to run hammer.exe from the 'sourcesdk\bin' directory. Here is the best way to work around this issue:
- Right-click on the Source SDK item on the Tools tab in Steam.
- Select Create desktop shortcut.
- Add
-runhammer
to the end of the steam.exe command line.- For example:
C:\Program Files\Valve\Steam\Steam.exe -applaunch 211 -runhammer
- For example:
- Rename the desktop shortcut to something appropriate, such as "Hammer Editor".
This has the added benefit of actually launching the SDK Launcher before Hammer, making sure it is the latest version.
Also, you can create shortcuts to Model Viewer and Face Poser by creating other shortcuts and adding these command line arguments:
-runmodelviewer
-runfaceposer
3D Lighting Preview View In Hammer Causes Strange Behavior and Crashes(Since 8/4/2006)
There is a main menu item for 3D Lighting Preview that should not be exposed at this point. Please do not use it as it does not work.
This issue is addressed and the fix will be available in the next release.
3D View In Hammer Appears Empty (Since 8/4/2006)
The newest release of Hammer requires that at least on Camera be placed in the map in order for the 3D Views to work. If you are experiencing empty 3D views simply place a camera in your map.
Error When Running Maps from Within A Mod (Since 8/4/2006)
When attempting to run a map from within Hammer you may come across the following error message:
Here is the process for working around this issue until it is addressed in the SDK:
- On Hammer's Tools|Options|Build Tools page change the Game Executable page to be:
$SteamDir\steam.exe
instead of $SteamUserDir\half-life 2\hl2.exe
- From the Run Map screen prepend the following to the parameters for the '$game_exe' command:
-applaunch 215
What this will do is run Steam and instruct it to launch 'Source SDK base' and point it to the map defined by the remainder of the '$game_exe' parameters. One thing to look out for is that you will need to build the DLL's for your MOD before running it.
SDK Code Issues
General
Error Running a New Mod (Since 8/4/2006)
In the new SDK it is necessary to build the client and server DLLs before running the MOD. Please build them if you see this message when trying to run the MOD.
From Scratch Mod Exits When Launching from Steam Menu (Since 8/4/2006)
Launching a (Make a mod from scratch) mod from the steam menu enters the game, shows the game menu, dings, and then exits, no error. Although, launching from a command line works fine.
- Well actually it should work fine. Though note that if you have compiled you're dlls in debug mode you have to add "-allowdebug" to the MOD's launch options! The run_mod.bat already adds it.