Serious Sam 3: BFE - Valve
Build 180520 for Serious Sam 3 is released.
If you have previously opted into public beta, you already have this.

Here are the changes:

- Fixed a crash after initial dialog on Silent Riddler that happened on some machines.
- Fixed problem with black screen when aiming with assault rifle weapon and post-processing effect allows very high exposure range.
- Fixed crash when entering Extras menu in Bulgarian locale.
- Added safety checks to prevent faulty drivers from crashing when they try to load GLSL shaders cached by older versions of driver.
- Multiplayer: Fixed speed hack cheat detection sometimes erroneously marking players as hacked.
- OSX: Split screen is now supported on OSX.

Serious Sam 3: BFE - Valve
- Added workaround for a bug in ATI OpenGL driver causing menu and loading background to be black.
- Thoroughly refactored and optimized postprocessing shader system. Some effects are up to 5x faster.
- Choose Levels menu now shows bigger thumnails for each level, and best statistics for it for the current player.
- Fixed a crash caused by Sirian bracelet when multithreaded rendering was enabled.
- Fixed a crash that could happen if a player carrying a flag in CTF game fell into abyss while in third person mode - with multithreaded rendering enabled.
- Fixed banding on very dense haze which starts couple of meters away from viewer when MSAA is not used.
- If thr_iAffinityStrictness was set to a value different than default, it would not be applied on game start. Fixed.
- Fixed the game's affinity strictness leaking into video and audio drivers, if they allow their threads to inherit affinity from main thread. This could potentially improve performance on Linux.
- The default "program has requested the runtime to terminate in an unusual way" message is replaced new logging which can be actually useful in troubleshooting.
- OSX: Added OSX input config for Logitech gamepads as created by Logitech.
- OSX: Fixed ability to dump crash reports on OSX.
- Linux+OSX: Fixed a case where application would sometimes lock up, instead of dumping a crash report, when a crash happened.
- Linux+OSX: Added support to remap controller input to support any types of controllers. New controller configs (.xml files) can be created by users as needed. See http://serioussam.com/wiki/index.php?title=Controller_Config for more details.
- Linux+OSX: Added control mappings for XBox 360, Playstation 3 and Logitech F510/F310/F710 controllers.
- Multiplayer: Fixed an issue where, if a player dies while carrying a flag in CTF game mode, the flag may be irretrievable if flag carrier dropped the flag in an abyss field, etc. In all such cases, the flag item will not be dropped at all, instead, the flag will return directly to its base.
- Multiplayer: Red/Blue team spawn markers worked only in CTF. That feature is now usable in all team modes.
- Multiplayer: Fixed a problem where no servers would appear in versus/cooperative server list if you previously used server filter in the other mode.
- Multiplayer: Added speedhack detection. Players caught using speed hacks will be marked as cheated in the player list.
- Multiplayer: Clients now cannot connect to the server if their UTC times differ by more than a day.
- Editor: Enemies placed in the world (not spawned) were bugged on clients if a cutscene starts on the first chapter. Fixed.
- Editor: Added cvars for forcing Depth-of-Field effect; "efx_fForcedDoFDistance" and "efx_fForcedApertureSize". (For testing purposes only!)
- Editor: Fixed problem with wrong lighting on a model influenced by really really big probe light (like, 20km box).
- Editor: Cvar wld_strPreferredStartChapter (available in editor only) can be used for easier testing of bigger levels.
- Editor: All cvars needed to generate texture precaching resources (used for texture cache warmup befor cutscenes) are now available in final editor builds.
- Scripting: It is now possible to define new input controls from Lua scripts and read their values. See http://serioussam.com/wiki/index.php?title=Lua/CustomCommandsAndBindings for details.
- Scripting: Added new macro math functions: mth*To*() (where * is Euler, Quaternion, AxisAngle, DirectionVector)
- Scripting: Added a new macro function: mthDotV3f(), which calculates the dot product of two 3D vectors.
- Scripting: Created new macro functions on puppet for script-driven combat: DoRangedAttack() and DoMeleeAttack(), which are latent and thus can be waited on in scripts.
- Scripting: Added macro functions SetGoalPoint() and GetBoundingBoxSize() to puppet, which can be used to control puppet movement via goal points.
- Scripting: CBaseEntity::InflictDamageToTarget(). This function complements the previous damage inflicting functions and allows specifying all damage parameters at once. Note that in this function, "self" is source, not target!
- Scripting: Added ability to filter damage on entities from scripts. Use CBaseEntity::EnableReceiveDamageScriptEvent(); Catch all ReceiveDamage events on that entity, and do whatever is needed in response to that. Call the HandleDamage() function _on that event object_ if you want to actually apply the damage (adjusted if needed).
- Scripting: All lua scripts located in Content/SeriousSam3/Scripts/Startup/ will be executed upon project boot (right after the menu system is initialized). These startup scripts can be re-executed at any time using prjExecuteStartupScripts cvar. (This works even in non-moddable version, as these are console scripts.)
- Scripting: When starting a world, after executing WorldScripts.lua, all custom Lua scripts from Content/SeriousSam3/Scripts/CustomWorldScripts/ are enumerated and executed. (Only in editor and in moddable version.)
- Scripting: Created a new macro function: ResolveResource(). This function will resolve a smart pointer to a resource and return a raw pointer that can be used to call functions on it (if the resource class supports sripting).
- Scripting: Base script entity class now exposes a new scripting function: GetWorld().
- Scripting: Added support for dynamic creation of entities from world scripts. Create one or more templates using "Template properties holder" resource, and save it; In a script, use global ResolveResource() and CTemplatePropertiesHolder::CreateTemplate() to get a local CEntityProperties object; Use CEntityProperties::SetPlacement() to adjust to desired position, then CTemplatePropertiesHolder::SpawnEntity() to spawn the new entity.
(Notes: Using CWorldInfoEntity::LoadResource(), one can dynamically load new template holders as needed.; Note that the result of ResolveResource() is strictly local, do not try to cache it across frames!)
- Scripting: Added scriptable hud elements CTextBoxHudElement and CModelHudElement.
- Scripting: HUD element creation now allows multiple instances of the same script hud element class.
- Scripting: Player puppet now exposes GetHUD() function, which retrieves player's HUD. Can be used to control custom HUD elements.
- Scripting: Added CPuppetEntity::IsLocalViewer(), CPuppetEntity::IsLocalOperator() usable to determine which player(s) is playing locally, and which is viewed from locally (could be playing, or being specated).
- Scripting: Implemented ViewerChanged script event which is sent on WorldInfo whenever current local viewer changes.
- Scripting: When an entity is deleted an 'EntityDeleted' script event is sent.
- Scripting: Added macro functions GetPlayerId and GetPlayerName to the CPlayerPuppetEntity class.
- Scripting: The "playerkilled" XML tag in log now has the player id.
- Scripting: A new XML tag "roundstart" is printed to log at the beginning of a match containing information about the gamemode.
- Scripting: Added custom event XML_Log which can catch all XML messages printed to log.
- Scripting: All XML_Log events are now sent both to console scripts and to world scripts. The player Chat event is now removed. Note that this means that world scripts have access to contents of player chat. (It can be used to implement remote commands in chat.)

Serious Sam 3: BFE - Valve
Build 176695 for Serious Sam 3 is released.
If you have previously opted into public beta, you already have this.

Here are the changes:
- Fix a crash occurring when switching from camera to player spectator mode.
- Added fix for micro-stuttering issue, controlled via 'sim_iFixMicroStuttering' cvar.
- Fixed messed textures after alt-tab in some cases on Direct3D.
- Fixed performance problems with HDR buffer resizing when choosing multiplayer model in menu.
- Fixed slightly wrong haze calculation in some cases.
- Some measures to remedy jittering when waiting for vsync in D3D that happened on some machines in some cases.
- Added cvar 'd3d_bTripleBuffering' to control whether to use triple-buffering, when waiting for vertical retrace under Direct3D.
- Fixed black screen on client when joining a Last Man Standing server.
- Fixed music on DeamonTombs not being controlled by music volume.
- If corruption of official gro files is detected, application will notify Steam that it should verify application cache on next restart. This should hopefully fix any corrupted files user may have on disk.
- If corruption of workshop gro files is detected, they will be deleted so that they will be automatically redownloaded on next application start.
- Editor: Editor now includes additional *_edit.gro files containing non-finalized versions of all files that were stripped of their edit data during creation of the game. This means that the editor download is now about 700MB bigger, but it allows you to edit all meshes, animations, mechanisms, etc.
- Editor: All official content including levels is now editable and can be saved. So custom versions of official levels can be created.
- Editor: If official content from a DLC is edited and resaved, it retains its DLC license. If such content is shipped to workshop, users subscribing to it need to have that DLC installed.
- Editor: It is now possible to finalize files using the shipped editor. Finalized files will be smaller in some cases, but will lack edit data.
- Editor: If some files are missing when loading documents in editor, placeholder "default" resources will be automatically created instead of failing the load.
- Editor: Fixed rendering size and aspect issues when running test game in editor, which caused mouse cursor in menus to be rendered in wrong position and other strange issues.
- Linux: Text input in Linux now respects the current keyboard layout.
- Linux: Support for clipboard (copy/paste).
- Linux: Fixed wrong characters in Linux for comma and period keys.
- Linux: Game now tries to restore desktop resolution after fatal error.
- Linux: Stack dump is now generated when the game crashes (into the Sam3.rpt file), similar to the Windows version. Post this when reporting crashes.
- Linux: Dedicated server would not start from Steam client.
- Localizations: Updated Bulgarian.

Build 174807 for Serious Sam 3 is released.
If you have previously opted into public beta, you already have this. For all others, here is the list of changes:

Here are the changes:
- Fixed slowdown due to constant resizing of HDR buffer when Netricsa HUD is on.
- Showing rendering resolution is now more accurate. (Shows size of HDR drawport and canvas it resides on.)
- Fixed erroneous calculation of object guide box handle size.
- Fixed a problem that would cause player weapon firing (for some weapons) to sometimes (randomly) be one frame late.
- Now using new Steam Workshop API that allows item sizes of up to 200MB, and should be more resistant to transient errors.
- Fixed survival medals not being shown.
- Linux: Gamepads are no longer disconnected if they don't have enough axes or buttons. This should also fix performance impact for such gamepads.
- Linux: Gamepad names are now logged.
- Editor: Implemented new macro function ApplyDamageTool() on base entity. This function exposes Editor's Damage Tool to scripts.
- Fixed an issue causing all split screen users to render primary user's crosshair icon instead of their own.
- Fixed player's view getting stuck when forced to look onto a target entity by script, if Free Look option is disabled.
- Added support for hardware gamma-correction for Linux and OSX platforms.
- OSX: Error will now be reported if cursor connect fails on OSX.

Serious Sam 3: BFE - Valve
Build 174448 for Serious Sam 3 is released.
If you have previously opted into public beta, you already have this. For all others, here is the list of changes:

- Linux: Added log messages for connected gamepads.
- Linux: Added inp_bLogGamepadEvents cvar for logging gamepad events.
- Linux: Fixed crashes on some window managers due to missing Xlib atoms.
- Added support for OpenGL tearing in VSync via 'ogl_bVSyncTearing' cvar. When cvar is on, screen refresh will wait for number of retraces specified via 'gfx_iWaitVSyncs' cvar and if more vertical retraces passed, will not wait for next one, but will do swap as soon as possible.
- Fixed wrong report of utilized OpenGL extensions.
- Slider widgets in color options menu are now enabled/disabled depending on support of gamma-correction also, not only full-screen or window mode.
- Fixed resolution downsizing not downsizing some buffer in-game causing more GPU memory usage than needed.
- Fixed command bindings not displaying properly in spectator view HUD.
- Added news feed to start screen.
- Editor: Fixed crash when exporting textures.
- Editor: Khnum and Aircraft puppets no longer ignore lethal damage. This allows Killer entity as well as macro functions such as DropDead() to affect these puppets.
- Editor: Added a new macro function to base entity: InflictWeaponDamage(). This function deals damage equivalent to one produced by any given weapon.

Serious Sam 3: BFE - Valve
Build 173936 for Serious Sam 3 is released.

- Linux: Various fixes for visual artefacts caused by GPU resource corruptions that happened when game was minimized, alt-tabbed or otherwise lost focus.
- Faster switching into game after Alt-Tab, and changing Gfx APIs.
- Linux: Outdated driver versions are now reported to user on Linux.
- Linux: Fixed zombie processes sometimes being left over by the game.
- Fixed problem where correct video mode wasn't started when changing back to game (via alt-tab) if cvar 'gfx_iAPI' is set to gfx API that is not actually supported by the platform.
- Added CPU name detection and output to console.
- For detecting GPU vendor and device ID under Linux, "lspci" external command is now used instead of "libpci" interface.
- OSX: Some fixes for handling of gained/lost keyboard focus.
- Prevented possible application crash that may occur during Steam Workshop sync IO failure.
- Handling of GPU synchronization (if gfx_iFinish>0) is now more responsive. It would sometimes cause stuttering previously.
- FPS counter variation is now also displayed (minimum and maximum frame rate for last refresh interval). Controlled via 'prf_bShowFPSVariation' cvar. (Default is on.)
- Fixed crash at start if Steam is running in offline mode.
- Mouse is no longer confined to window after alt-enter.

Serious Sam 3: BFE - Valve
Build 173456 for Serious Sam 3 is released.

If you have previously opted into public beta, you already have this. For all others, here is the list of changes:

Update 173456 contains a number of general fixes in the game, as well as some that are specific to the Linux version.

- IMPORTANT FOR LINUX: Most of the weird performance problems in previous builds were caused by performance throttling (aka power saving) features on various CPUs not correctly identifying that the game is running and continually jittering between low and high performance modes (several times per second sometimes!). This build adds a workaround for this which should hopefully prevent the symptoms from being so extreme. It is not perfect however, as there might still be a few percents of performance to squeeze out. The recommended solution is to turn off such features in BIOS for Linux machines. They can be found in BIOS under names such as SpeedStep, Cool'N'Quiet, C1E, PowerNow!, Power Saving, CPU Throttling, Dynamic Frequency Scaling, or something else - depending on your BIOS.

- Added a script that offers to automatically install libpci.3 on linux if it is missing.
- Fixed graphics corruption under OpenGL if game is minimized or "alt-tabbed" while it is loading content.
- Fixed screen-shot grabbing and manual save-game thumbnails not working under OpenGL.
- OpenGL library can now load even if some vendor dependent functions are missing.
- X11 libraries on Linux are now dynamically loaded, so game can properly report and error if something is missing.
- Dedicated server on Linux no longer requires X11 to be installed.
- Fixed problems with filenames of wrong case that happened only with Linux dedicated server.
- Full support for language packs in Workshop. Language mods can now work even in pure (non-moddable) version of the game, and don't require any customization from user side. Just subscribe to them.
- Workshop packages menu is now also available in non-moddable version of application (this allows enabling/disabling of language packs).
- User is now properly notified when Steam Workshop content download fails.
- Fixed issues that might have prevented some user accounts from uploading to Workshop.
- SeriousEditor now displays Steam Workshop sync progress in status bar.
- Upload to Steam Workshop command is no longer available until Steam Workshop sync is finished. Previuously, it locked up the application.
- Fixed an issue causing clients to always see weapon change on HUD at game start.
- Fixed a lockup happening if spectator cameras are linked in a closed loop. This only happened with user-made levels.
- Weapon change attempt is now correctly being indicated on HUD if performed during sprint.
- Fixed popup menus in Serious Editor sometimes going off the bottom of the screen in multimonitor setups.
- Fixed duplicate directory entries being shown in Serious Editor in file browsing for directories inside user-made .gro files.
- Added vertex merge when importing fbx meshes.
- Added facilities in Serious Editor to automate editing on entities from console scripts.
- Added cfuncs edtGetMemberValue(strUserDataPath) and edtSetMemberValue(strUserDataPath, value) used to change entity properties.
- Added cfunc edtSelectEntityPropertyByID(iEntityID).
- On Linux, fixed wrong display settings if no monitor has been marked as primary.
- KDE session version added to the log.

Serious Sam 3: BFE - Valve
- Added a script that offers to automatically install libpci.3 on linux if it is missing.
- Fixed graphics corruption under OpenGL if game is minimized or "alt-tabbed" while it is loading content.
- Fixed screen-shot grabbing and manual save-game thumbnails not working under OpenGL.
- OpenGL library can now load even if some vendor dependent functions are missing.
- X11 libraries on Linux are now dynamically loaded, so game can properly report and error if something is missing.
- Dedicated server on Linux no longer requires X11 to be installed.
- Fixed problems with filenames of wrong case that happened only with Linux dedicated server.
- Full support for language packs in Workshop. Language mods can now work even in pure (non-moddable) version of the game, and don't require any customization from user side. Just subscribe to them.
- Workshop packages menu is now also available in non-moddable version of application (this allows enabling/disabling of language packs).
- User is now properly notified when Steam Workshop content download fails.
- Fixed issues that might have prevented some user accounts from uploading to Workshop.
- SeriousEditor now displays Steam Workshop sync progress in status bar.
- Upload to Steam Workshop command is no longer available until Steam Workshop sync is finished. Previuously, it locked up the application.
- Fixed an issue causing clients to always see weapon change on HUD at game start.
- Fixed a lockup happening if spectator cameras are linked in a closed loop. This only happened with user-made levels.
- Weapon change attempt is now correctly being indicated on HUD if performed during sprint.
- Fixed popup menus in Serious Editor sometimes going off the bottom of the screen in multimonitor setups.
- Fixed duplicate directory entries being shown in Serious Editor in file browsing for directories inside user-made .gro files.
- Added vertex merge when importing fbx meshes.
- Added facilities in Serious Editor to automate editing on entities from console scripts.
- Added cfuncs edtGetMemberValue(strUserDataPath) and edtSetMemberValue(strUserDataPath, value) used to change entity properties.
- Added cfunc edtSelectEntityPropertyByID(iEntityID).

Serious Sam 3: BFE - Valve
Update 171822

- Prepared everything for Steam Workshop support.
- Added Bulgarian locale.
- Fixed a crash occuring on server if a client equips sledgehammer, climbs onto a ladder and disconnects while still on the ladder.
- Fixed a crash on dedicated server occuring in coin-op if a game ends with all players disconnected.
- Fixed another way to get out of map on Medina.
- Mirror reflections are now disabled at low GPU quality.
- More optimizations on OpenGL (GLSL) shaders.
- Glowing in menu is now disabled on OSX and Linux platforms, and on 'lowest' GPU quality preset.
- Updated fbx import-export interface to make it accessible from the model editor.
- SeriousEditor: Fixed crash when trying to solve solution which doesn't have lightmaps' dimensions of power of 2.
- SeriousEditor's file open dialog is now better at handling files with weird path formats (mixed slashes and backslashes, dot-dots...)
- Updated browser list control to display green checkered background for files without a catalog index.
- Voice chat now also works via OpenAL, if enabled via svm_bOpenALVoiceRecording. It is enabled by default on Linux, but disabled by default on OSX, because OpenAL recording is broken in most OSX versions.
Serious Sam 3: BFE - Valve
Update 171000

- Player now has correct animations in 3rd person when wielding the axe.
- Fixed fast-firing exploit on SledgeHammer/Axes.
- In versus game modes, C4 projectile can now be picked up by any player after it has been idle for a while. In non-versus game modes, it can only be picked up by the player who threw it.
- In versus games, C4 bombs now collide and bounce off of enemy players when hit, rather than pass through them.
- After respawning, players can no longer trigger C4 explosives that they threw before being killed.
- When a player is killed in versus game mode holding a weapon with no ammo remaining, they will no longer drop it as a pickable weapon item.
- Fixed sniper mask not being rendered if weapon rendering is disabled.
- Fixed crashing when going into spectate on DemonTomb, Medina and TombofNefretari.
- Added Tehnopolip after 4 min of gameplay on SV_MedinaDefender.
- Fixed some places on MedinaDefender, CairoCity and UnfinishedComplex where player could get out of the level.
- Fixed falling out of world in Fiaca.
- Fixed error in Sphinx explosive planting script.
- Fixed wrong handling of file case in Linux dedicated server.
- Russian VO for JotN DLC.
- Drag&dropping entities onto script variable in editor did not work in the first line in script. Fixed.
- Fixed a rare crash in FBX skeleton loader.
- Added cvar 'ogl_bCompressCachedShaders' to control whether OpenGL shaders will be compressed when cached to files or not.
- Fixed shader cache not saving properly on OpenGL.
- Fixed some fatal errors not being visible if happened in full screen.

Serious Sam 3: BFE - Valve
- NEW! Added 7 new versus maps and 3 new survival maps.
- NEW! Added support for VAC.

- When playing versus with automatic map rotation, if playing some map other than the official ones, next map would always be Slumoner. Fixed.
- Fixed problem with debris sometimes being lit by distant light even in underground rooms.
- Updated localizations for Chinese, Russian, Polish and Czech.
- Added support for caching GLSL shaders' binary code under OpenGL via "GL_ARB_get_program_binary" extension. (Currently only works with separated shaders!)
- Fixed some cases where (false positive) credentials errors were causing the moddable game to exit.
- Fixed SeriousEditor reporting credential errors when user tried to finalize files from list.
- Fixed SeriousEditor reporting credential errors when user tried to execute custom script commands.
- Fixed a case where 3rd person player model would be left without weapon in hand in some situations.
- Devastator projectile can now hit other physical projectiles.
- Driver version detection now works under OpenGL.
- Update auto-detect GPU info for new and existing cards.
- JPG files are now supported as a valid texture file type.
- Fixed a very very rare case of crash when printing time/date values (e.g. in load/save menus).
- Fixed an enemies remaining without an animation (rendering T-pose) in some very rare cases.
- Fixed jetpack sound being heard on entire map.
- Fixed errors when getting on or off ladders in network in some cases that didn't manifest on official maps.
- Fixed Rockets exploding on launch in some cases if fired while swimming.
- Fixed some wrong HUD visuals happening when using combinations of keyboard/mouse and gamepad.
- Fixed player banning not working and re-enabled player time ban in voting menu.
- Added support for OpenGL "GL_ARB_separate_shader_objects" extension, which speeds up shader compiling under OpenGL.
- Fixed fight music sometimes continuing playing when an event script was supposed to induce silence.
- Fixed big lens-flares being visible over sniper mask.
- Fixed black screen issue under OpenGL when player is hurt. (Mostly appeared on Mac)
- Added OpenGL extension for determining amount of video and texture RAM on NV and ATI GPUs.
- Fixed some artefacts on Pirate Pete player model.
- When no players are alive and have no lives left in a game mode that uses lives, game play will end (in 5 seconds to allow after death score from kills) and map will be restarted.
- In case there are no living players anywhere on the world, the first available spectator camera will be selected as best.
- Some optimizations in sound playback system.
- Light streaks effect quality is now smoother and can be adjusted via new 'efx_iStreaksQuality' cvar.
- Fixed black surfaces in some cases when a model with Vegetation shader is instanced.
- Further optimizations in multithreaded renderer.
- Fixed a rare crash when using C4 in network games.
- Various rendering performance optimizations.
- Fixed occasional crash at startup of Serious Editor.
- Faster texture uploads under Direct3D. Also, if d3d_bMultiThreadedDevice=1, it can upload in separate thread.
- Numerous bug fixes for OpenGL rendering.
- tex_iSquishCompressionQuality controls DXT compression quality of Squish algorithm; used only when NVIDIA texture tools are not installed
- Serious Editor now supports high quality texture compression even in Steam builds. Install NVIDIA texture tools ( http://developer.nvidia.com/content/gpu-accelerated-texture-compression ) to enable this.
- Updated fbx import to support blend shape animation.
- Fixed bug which caused falling damage when player would climb down the ladder.
- Ladders can now be used underwater.
- Player can now exit the ladder after climbing down to its base, even if there is no floor below.
- Fixed cases where ladders would not work correctly on clients.
- Fixed a rare crash that happened some times if client was left in the "you were disconnected" screen for very long time.
- Several optimizations in network processing, which lower the CPU load on server and make better use of available bandwidth for clients.
- Added steam_bEnableVAC cvar for starting a dedicated server with VAC support. VAC is now enabled by default.
- Added a checkbox for filtering VAC unsecured servers in the server list.
- Server list now shows an icon for VAC protected servers.
- Dedicated server no longer reports errors if XInput is not installed.
- Using third person view mode is no longer reported as cheating in versus game modes.
- Fixed RConServer handling of cursor offset when pasting text or using home / end keys.
- Rcon telnet server now prevents brute force password guessing attacks by limiting number of allowed connection attempts by various criteria.
- Fixed a possible crash when processing texts with invalid utf8 sequences.
- Fixed cursor navigation in game console in presence of utf8 characters.
- Voting info now properly handles player names that have html tags ("<", ">", "&") in them.
- Fixed a rare bug where level stats of a finished level would be written to a wrong leaderboard.
- Gamepad layout menu no longer renders its menu reflection, to improve readability.
- Fixed problem with menus glowing all around after returning from the game sometimes when rendering resolution was smaller than screen resolution.
- Raw input system now detects XFire and falls back to legacy sytem, because XFire breaks raw input on the system where it is running.
- Added warning in split screen menu if XFire is running. (Since without raw input one cannot use multiple keyboards.)
- Fixed some rare general multithreading crashes (all platforms).
- Fixed several cases of wrong rendering when multi-threaded renderer was enabled: translucent objects, first-person weapon and some other models flashing, morphs not working.
- Fixed crash when using multi-threaded rendering in editor and trying to edit a model.
- Fixed a possible crash in editor when attempting to edit a non-local script bound to an entity of a world which had previously been closed.
- Fixed a crash in script editor when inserting a new object into an empty line in a script by drag and dropping it.
- Fixed an issue preventing auto-complete from working if used on the first token in the first line in script editor.
- Skeletons (and animation editor) now support three types of bones - bones, joints and null bones. FBX importer automatically uses null and joint bones where needed.
- FBX importer now supports importing and exporting polygon maps and morph maps.
- Updated FBX importer to handle negative timestamps for animation keyframes.
- Added mesh simplification tool (Ctrl+Shift+C) in mesh editor. It can be used to automatically create LODs or generally simplify meshes.
- Environment grabber now also temporarly disable rendering of comments, so these are no longer baked inside probe lights.
- Door entity can now be set up to ignore distant lights (added "Ignore distant lights" property).
- Find entities dialog now has an "Extensive resource search" button. Entities which in any way reference a resource whose file name matches the search expression will be selected. Note that this is very slow and can take a few minutes on production size levels.
- Fixed crash when trying to test model without collision geometry for raycast.
- Fixed an issue where third person weapon tool would remain visible after switching to hands weapon to show sirian bracelet.
- Fixed some rare cases when enemies would behave strangely if player was in water.
- Rather than starting with the first spectator camera on the world, the camera closest to a living player is selected.
- Spectator camera's current FOV is now kept same when switching between cameras.
- Spectator view now uses standerd HUD rendering system to obey all of its settings, scaling, etc.
- Players are no longer forced to exit spectator mode during mid-game round countdown.
- Fixed various problems for players that were dead during cutscenes (not seeing the CS, spawning on wrong place...)
- Players will no longer produce wound sounds and effects if damaged while dead.
- A sound is now played when extra life is received.
- Added Intel GPUs to auto-detection list. This is just first version, and will possibly need more tweaking. (Intel GPUs are still not officially supported.)
- Added new GPUs from nVidia and ATi to auto-detection list.
- Fixed OpenGL initialization crashing on drivers that returned invalid values for identification.
- Added workaround for wrong report from ATI OpenGL driver about max render target size supported (GL_MAX_RENDERBUFFER_SIZE).
- Fixed some rare cases where shadows were rendered wrong due to visibility errors.
- Added further optimizations to visibility system for shadows.
- Instancing now works even on destruction models.
- Fixed a model disappearing too early if it has several meshes with different max distances and/or fading lenghts.
- Fixed problem with some models flashing when fading out.
- Fixed flashing pyramid in cut-scene in Luxor level.
- Fixed occasional junk screen on startup.
- Fixed extremely slow updating of font texture when using extended Direct3D device.
- Fixed some HDR brightness parameters from one split-screen view being applied to another in some cases.
- Highlight shader now renders in correct brightness when HDR output normalization is used.
- Loading shaders from disk is now faster.
- Some shaders now report errors for some invalid setup combinations, to aid properly configuring them.
- Optimized zoom shader so it doesn't render the effect in vain when very weak.
- General optimization in CPU usage for per-frame preparations for some shaders.
- Several optimisations in mirrors, refractions and water rippler, as well as SSAO, color ramp processing and light-streaks effect.
- Added compatibility testing cvar 'efx_bNoColorGrading' which, when enabled, forbid color ramping in post-processing pass.
- Radio chat controller now has IsInRadioChat() functoin to determine if a radio chat is currently in progress.
- Khnum now adjusts its feet on unlevel ground.
- All jetpack parameters are now overridable through zone controller.
- Jet pack can now be dynamically added and removed from script using AddJetpack() and RemoveJetpack() macro functions.
- Weapons that don't need auto-aiming no longer show the indicator.
- Pressing "aim" button when auto-aiming is enabled will lock on target even for weapons that don't have aim-down-sight.
- Auto-aim target tracking during aiming is now more robust handling cases such as spiders on ceilings.
- Fixed multiple players sometimes being able to attach a sticky bomb to the same entity on the same attachment.
- Fixed sticky bombs sometimes failing to lock on attachment in some rare cases.
- Puppets can now define custom stretch multiplier for locked on sticky bomb projectiles / attachments.
- Fixed possible lockup in spaceship's beam attack.
- Fixed cases where enemies using some tactics would never be able to unable to reach their foe.
- Tactics without markers now work.
- Fixed an issue with enemy kills in beast hunt mode not being counted if achieved via indirect damage (e.g., killing a kamikaze near another enemy, killing them both with kamikaze's blast).
- Ramesseum - fixed bug where in Cooperative if some player with picked canister came to fill the car within 3 seconds after other player filled last canister (8/8) script could fail and level could not finish.
- Fixed a rare issue where destroying some object would leave another object on top of it floating in the air.
- Fixed the spinning view bug that sometimes appeared on OSX.
- Updated fbx import-export to sdk version 2013.2.
- Updated fbx import-export. Fixes for model mover and unit conversions.
- Player sprint state is now canceled when game session is finished (winner or round winner is declared).
- It is no longer possible to sprint when carrying MyBurden.
- It is no longer possible to sprint underwater.
- Fixed a rare crash after respawning a player who was gibbed.

...

Search news
Archive
2024
Mar   Feb   Jan  
Archives By Year
2024   2023   2022   2021   2020  
2019   2018   2017   2016   2015  
2014   2013   2012   2011   2010  
2009   2008   2007   2006   2005  
2004   2003   2002