Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
PhaserEditor2D committed Nov 24, 2020
2 parents 322c28d + 5d4f87b commit 2327f91
Show file tree
Hide file tree
Showing 95 changed files with 1,946 additions and 203 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# Change Log

## Version 3.9.0 - Nov 24, 2020

### Added

* Scene Editor: supports new Shape objects:
* Rectangle.
* Ellipse.
* Triangle.
* Scene Editor: the Tilemap Layer Outline cell renderer draws the layer.
* Scene Editor: group built-in types by category, in the Blocks view.
* Electron:
* Allows changing the workspace.
* A main menu option to unlock the editor, when it runs in application mode.
* Shows license activation status in title bar and About dialog.

### Modified

* The **Resize TileSprite Tool** was renamed to **Resize Tool**. It also allows resize shape objects.

### Fixed

* Fixes regression sorting atlas frames in viewers.

## Version 3.8.1 - Nov 1, 2020

Expand Down
23 changes: 23 additions & 0 deletions scripts/make-all-help-files.js
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,29 @@ utils.makeHelpFile([
"Phaser.Tilemaps.LayerData.tileHeight",
"Phaser.Tilemaps.LayerData.widthInPixels",
"Phaser.Tilemaps.LayerData.heightInPixels",

"Phaser.GameObjects.Shape",
"Phaser.GameObjects.Shape.isFilled",
"Phaser.GameObjects.Shape.fillColor",
"Phaser.GameObjects.Shape.fillAlpha",
"Phaser.GameObjects.Shape.isStroked",
"Phaser.GameObjects.Shape.strokeColor",
"Phaser.GameObjects.Shape.strokeAlpha",
"Phaser.GameObjects.Shape.lineWidth",

"Phaser.GameObjects.Rectangle",

"Phaser.GameObjects.Ellipse",
"Phaser.GameObjects.Ellipse.smoothness",

"Phaser.GameObjects.Triangle",

"Phaser.Geom.Triangle.x1",
"Phaser.Geom.Triangle.y1",
"Phaser.Geom.Triangle.x2",
"Phaser.Geom.Triangle.y2",
"Phaser.Geom.Triangle.x3",
"Phaser.Geom.Triangle.y3",

], "../source/editor/plugins/phasereditor2d.scene/data/phaser-docs.json");

Expand Down
119 changes: 91 additions & 28 deletions source/editor/package-lock.json

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

Loading

0 comments on commit 2327f91

Please sign in to comment.