Skip to content

Commit

Permalink
Increased version to 3.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kraifpatrik committed Jun 3, 2022
1 parent 0da9dbb commit 364eb13
Show file tree
Hide file tree
Showing 21 changed files with 26 additions and 54 deletions.
12 changes: 6 additions & 6 deletions BBMOD_GML/extensions/BBMOD_CameraHTML5/BBMOD_CameraHTML5.yy

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion BBMOD_GML/options/amazonfire/options_amazonfire.yy

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion BBMOD_GML/options/android/options_android.yy

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion BBMOD_GML/options/html5/options_html5.yy

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion BBMOD_GML/options/ios/options_ios.yy

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion BBMOD_GML/options/linux/options_linux.yy

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion BBMOD_GML/options/mac/options_mac.yy

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion BBMOD_GML/options/operagx/options_operagx.yy

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion BBMOD_GML/options/tvos/options_tvos.yy

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion BBMOD_GML/options/windows/options_windows.yy

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion BBMOD_GML/options/windowsuap/options_windowsuap.yy

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 0 additions & 6 deletions BBMOD_GML/scripts/BBMOD_Animation/BBMOD_Animation.gml
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,6 @@ function BBMOD_Animation(_file=undefined, _sha1=undefined)
/// @readonly
IsLoaded = false;

/// @var {Real} The version of the animation file.
/// @obsolete This property is now obsolete. Please use
/// {@link BBMOD_Animation.VersionMajor} and {@link BBMOD_Animation.VersionMinor}
/// instead.
Version = BBMOD_VERSION_MAJOR;

/// @var {Real} The major version of the animation file.
VersionMajor = BBMOD_VERSION_MAJOR;

Expand Down
4 changes: 0 additions & 4 deletions BBMOD_GML/scripts/BBMOD_Camera/BBMOD_Camera.gml
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,6 @@ function BBMOD_Camera() constructor
/// direction. Defaults to `(1, 0, 0)`.
Target = new BBMOD_Vec3(1.0, 0.0, 0.0);

/// @var {Struct.BBMOD_Vec3} The camera's up vector. Defaults to `(0, 0, 1)`.
/// @obsolete
Up = new BBMOD_Vec3(0.0, 0.0, 1.0);

/// @var {Real} The camera's field of view. Defaults to `60`.
/// @note This does not have any effect when {@link BBMOD_Camera.Orthographic}
/// is enabled.
Expand Down
13 changes: 0 additions & 13 deletions BBMOD_GML/scripts/BBMOD_Gizmo/BBMOD_Gizmo.gml
Original file line number Diff line number Diff line change
Expand Up @@ -57,14 +57,6 @@ function BBMOD_Gizmo(_size=10.0)
destroy: destroy,
};

/// @var {Array<Struct.BBMOD_Model>} The gizmo model.
/// @note Please note that this model is not loaded asynchronnously,
/// therefore it cannot be used on platforms that require asynchronnous
/// loading, like HTML5!
/// @readonly
/// @obsolete This has been replaced with {@link BBMOD_Gizmo.Models}.
static Model = undefined;

/// @var {Array<Struct.BBMOD_Model>} Gizmo models for individual edit modes.
/// @note Please note that these are not loaded asynchronnously, therefore
/// the gizmo cannot be used on platforms that require asynchronnous loading,
Expand Down Expand Up @@ -104,11 +96,6 @@ function BBMOD_Gizmo(_size=10.0)
];
}

/// @var {Bool} Used to show/hide the gizmo. Default value is `true`, which
/// makes it visible.
/// @obsolete This has been replaced with {@link BBMOD_Renderer.EditMode}.
Visible = true;

/// @var {Bool} If `true` then the gizmo is editing selected instances.
IsEditing = false;

Expand Down
6 changes: 0 additions & 6 deletions BBMOD_GML/scripts/BBMOD_Model/BBMOD_Model.gml
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,6 @@ function BBMOD_Model(_file=undefined, _sha1=undefined)
destroy: destroy,
};

/// @var {Real} The version of the model file.
/// @obsolete This property is now obsolete. Please use
/// {@link BBMOD_Model.VersionMajor} and {@link BBMOD_Model.VersionMinor}
/// instead.
Version = BBMOD_VERSION_MAJOR;

/// @var {Real} The major version of the model file.
VersionMajor = BBMOD_VERSION_MAJOR;

Expand Down
2 changes: 1 addition & 1 deletion BBMOD_GML/scripts/BBMOD_Renderer/BBMOD_Renderer.gml
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ function BBMOD_Renderer()
/// @param {Real} _screenY The Y position on the screen.
/// @return {Bool} Returns `true` if the gizmo was selected.
/// @note {@link BBMOD_Renderer.Gizmo} must be defined.
/// @obsolete
/// @private
static select_gizmo = function (_screenX, _screenY) {
if (!Gizmo || !Gizmo.Visible || !surface_exists(SurSelect))
{
Expand Down
5 changes: 0 additions & 5 deletions BBMOD_GML/scripts/bbmod_defines/bbmod_defines.gml
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
/// @macro {Real} The supported version of BBMOD and BBANIM files.
/// @obsolete This macro is now obsolete. Please use {@link BBMOD_VERSION_MAJOR}
/// and {@link BBMOD_VERSION_MINOR}.
#macro BBMOD_VERSION 3

/// @macro {Real} The supported major version of BBMOD and BBANIM files.
#macro BBMOD_VERSION_MAJOR 3

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Changelog
# Changelog 3.5.0
This release mainly adds support for image-based lights to the default shaders and support for ambient, directional light and shadows, point lights and fog to PBR shaders.

## GML API:
### General:
* **Removed all API previously marked as deprecated or obsolete!** Please make sure you are not using any of it before upgrading your project to this version.

### Core module:
* Moved method `set_ibl` from `BBMOD_PBRShader` to `BBMOD_BaseShader`.
* Moved property `MaxPointLights` and methods `set_ambient_light`, `set_directional_light`, `set_point_lights` and `set_fog` from `BBMOD_DefaultShader` to `BBMOD_BaseShader`.
Expand Down
1 change: 1 addition & 0 deletions docs_src/Changelog/Changelog_.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
In this section you can find changelogs for all releases of BBMOD since 3.0.0.

## Contents
* [3.5.0](./Changelog3.5.0.html)
* [3.4.3](./Changelog3.4.3.html)
* [3.4.2](./Changelog3.4.2.html)
* [3.4.1](./Changelog3.4.1.html)
Expand Down
2 changes: 1 addition & 1 deletion docs_src/index.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# BBMOD
Welcome to the official documentation of BBMOD 3.4.3!
Welcome to the official documentation of BBMOD 3.5.0!

BBMOD is an advanced 3D rendering solution for GameMaker. It consists of a
custom model and animation file formats (`*.bbmod`, `*.bbanim`), a model
Expand Down
3 changes: 2 additions & 1 deletion gmdoc.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"title": "BBMOD Docs",
"author": "BlueBurn",
"prefix": ["bbmod", "__bbmod"],
"version": "3.4.3",
"version": "3.5.0",
"analytics": "",
"api": {
"rating": "/bbmod/page_rating.php"
Expand All @@ -15,6 +15,7 @@
"Changelog": {
"file": "Changelog/Changelog_.md",
"pages": {
"3.5.0": "Changelog/Changelog3.5.0.md",
"3.4.3": "Changelog/Changelog3.4.3.md",
"3.4.2": "Changelog/Changelog3.4.2.md",
"3.4.1": "Changelog/Changelog3.4.1.md",
Expand Down

0 comments on commit 364eb13

Please sign in to comment.