Browse Source

Updated script API.

Lasse Öörni 14 years ago
parent
commit
3313a7a66b
2 changed files with 3 additions and 2 deletions
  1. 2 1
      Docs/ScriptAPI.dox
  2. 1 1
      Engine/Graphics/Zone.h

+ 2 - 1
Docs/ScriptAPI.dox

@@ -1710,7 +1710,8 @@ Properties:<br>
 - uint maxLights
 - BoundingBox& worldBoundingBox (readonly)
 - BoundingBox& boundingBox
-- Color& ambientColor
+- Color& ambientStartColor
+- Color& ambientEndColor
 - Color& fogColor
 - float fogStart
 - float fogEnd

+ 1 - 1
Engine/Graphics/Zone.h

@@ -95,7 +95,7 @@ protected:
     BoundingBox lastBoundingBox_;
     /// Ambient start color.
     Color ambientStartColor_;
-    /// Ambient end start color.
+    /// Ambient end color.
     Color ambientEndColor_;
     /// Fog color.
     Color fogColor_;