Skip to content
This repository was archived by the owner on Jan 5, 2024. It is now read-only.

Commit 7da83c9

Browse files
committed
Update changelog
1 parent f32fbf4 commit 7da83c9

File tree

1 file changed

+15
-13
lines changed

1 file changed

+15
-13
lines changed

CHANGELOG.md

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -93,13 +93,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
9393
`PrimitiveMan:DrawBitmapPrimitive(pos, entity, rotAngle, frame, bool hFlipped, bool vFlipped)`
9494
`PrimitiveMan:DrawBitmapPrimitive(player, pos, entity, rotAngle, frame, bool hFlipped, bool vFlipped)`
9595
Original bindings with no flip arguments are untouched and can be called as they were.
96-
96+
9797
- Added new primitive drawing functions to `PrimitiveMan`:
9898
```
9999
-- Arc
100100
PrimitiveMan:DrawArcPrimitive(Vector pos, startAngle, endAngle, radius, color)
101101
PrimitiveMan:DrawArcPrimitive(player, Vector pos, startAngle, endAngle, radius, color)
102-
102+
103103
PrimitiveMan:DrawArcPrimitive(Vector pos, startAngle, endAngle, radius, color, thickness)
104104
PrimitiveMan:DrawArcPrimitive(player, Vector pos, startAngle, endAngle, radius, color, thickness)
105105

@@ -110,29 +110,29 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
110110
-- Box with rounded corners
111111
PrimitiveMan:DrawRoundedBoxPrimitive(Vector upperLeftCorner, Vector bottomRightCorner, cornerRadius, color)
112112
PrimitiveMan:DrawRoundedBoxPrimitive(player, Vector upperLeftCorner, Vector bottomRightCorner, cornerRadius, color)
113-
113+
114114
PrimitiveMan:DrawRoundedBoxFillPrimitive(Vector upperLeftCorner, Vector bottomRightCorner, cornerRadius, color)
115115
PrimitiveMan:DrawRoundedBoxFillPrimitive(player, Vector upperLeftCorner, Vector bottomRightCorner, cornerRadius, color)
116116

117117
-- Triangle
118118
PrimitiveMan:DrawTrianglePrimitive(Vector pointA, Vector pointB, Vector pointC, color)
119119
PrimitiveMan:DrawTrianglePrimitive(player, Vector pointA, Vector pointB, Vector pointC, color)
120-
120+
121121
PrimitiveMan:DrawTriangleFillPrimitive(Vector pointA, Vector pointB, Vector pointC, color)
122122
PrimitiveMan:DrawTriangleFillPrimitive(player, Vector pointA, Vector pointB, Vector pointC, color)
123123

124124
-- Ellipse
125125
PrimitiveMan:DrawEllipsePrimitive(Vector pos, horizRadius, vertRadius, color)
126126
PrimitiveMan:DrawEllipsePrimitive(player, Vector pos, horizRadius, vertRadius, color)
127-
127+
128128
PrimitiveMan:DrawEllipseFillPrimitive(Vector pos, short horizRadius, short vertRadius, color)
129129
PrimitiveMan:DrawEllipseFillPrimitive(player, Vector pos, horizRadius, vertRadius, color)
130130
```
131-
131+
132132
- Added log for non-fatal loading errors. This log will show image files that have been loaded with incorrect extensions (has no side effects but should be addressed) and audio files that failed loading entirely and will not be audible.
133133
If errors are present the console will be forced open to notify the player (only when loading into main menu).
134134
Log will be automatically deleted if warnings are no longer present to avoid polluting the root directory.
135-
135+
136136
- Game window resolution can now be changed without restarting the game.
137137

138138
### Changed
@@ -185,8 +185,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
185185

186186
- Input enums moved from `UInputMan` to `Constants` and are no longer accessed with the `UInputManager` prefix. These enums are now accessed with their own names as the prefix.
187187
For example: `UInputManager.DEVICE_KEYB_ONLY` is now `InputDevice.DEVICE_KEYB_ONLY`, `UInputManager.INPUT_L_UP` is now `InputElements.INPUT_L_UP` and so on.
188-
189-
- `CraftsOrbitAtTheEdge` corrected to `CraftOrbitAtTheEdge`. Applies to both ini property and lua binding.
188+
189+
- `CraftsOrbitAtTheEdge` corrected to `CraftOrbitAtTheEdge`. Applies to both ini property and lua binding.
190190

191191
- Game will now Abort with an error message when trying to load a copy of a non-existent `AtomGroup`, `Attachable` or `AEmitter` preset.
192192

@@ -198,12 +198,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
198198
The `PrintScreen` button will now take a single screenshot on key release and will not take more until the key is pressed and released again.
199199
The `Ctrl+S` key combination is unchanged and will take a single screenshot every frame while the keys are held.
200200
The `Ctrl+W` and `Alt+W` key combinations will now take a single WorldDump/ScenePreview on `W` key release (while `Ctrl/Alt` are still held) and will not take more until the key is pressed and released again.
201-
201+
202202
Additionally, all screenshots (excluding abortscreen) will now be saved into a `_Screenshots` folder (`_` so it's on top and not hiding between module folders) to avoid polluting the root directory. ([Issue #163](https://github.com/cortex-command-community/Cortex-Command-Community-Project-Source/issues/163))
203203
This folder will be created automatically after modules are loaded if it is missing.
204-
204+
205205
- `ScreenDumps` and `WorldDumps` are now saved as compressed PNGs.
206-
206+
207207
- Controller deadzone setting ignores more input. Previously setting it to the maximum was just enough to eliminate stick drift.
208208

209209
- `Arm.HandPos` will now get/set the hand position as relative to the arm's joint position, instead of relative to the arm's center of mass.
@@ -212,12 +212,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
212212
Resolution multiplier button changed to `Fullscreen` button - this will set the game window resolution to match the desktop resolution. When resolution matches the desktop, this button will change to `Windowed` and will allow setting the game window resolution back to default (960x540).
213213
Added `Upscaled Fullscreen` button - this will change the resolution to half of the desktop and the multiplier to 2. The `Fullscreen` button will change to `Windowed` in this mode to return to non-upscaled mode (960x540).
214214
Selecting any resolution setting from the resolution combobox will immediately change to selected resolution. (Known bug: Clicking off the combobox without making a new selection while in `Upscaled Fullscreen` mode will change resolution to `Fullscreen`. This will be addressed later.)
215-
215+
216216
**Note:** Changing the game window resolution while an Activity is active requires ending the Activity. A dialog box will appear asking to confirm the change.
217217

218218
- Moved from C-style random number generation to C++ standard. This includes usage of an mt19937 random number generator.
219219
- For C++ coders the functions SelectRand, PosRand and RangeRand have been replaced by the function template RandomNum() and its overload RandomNum(T min, T max). The function NormalRand has been replaced by the function template RandomNormalNum(). For lua coders there is no change.
220220

221+
- Damage to actors from impulses is now relative to their max health instead of being on a scale from 0 to 100.
222+
221223
### Fixed
222224

223225
- Fix crash when returning to `MetaGame` scenario screen after activity end.

0 commit comments

Comments
 (0)