Skip to content

Commit

Permalink
Merge pull request #488 from akashic-games/add-composite-operation
Browse files Browse the repository at this point in the history
add difference and saturation to composite operation
  • Loading branch information
dera- authored Feb 26, 2024
2 parents 773a3d0 + 3f33a7c commit e21d586
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 15 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# ChangeLog

## 3.17.0
* @akashic/pdi-types@1.13.0 に追従
* サポートする `CompisiteOperation``"difference"``"saturation"` を追加

## 3.16.6
* exports.default をサポートする `g.ModuleManager#_internalRequire` を追加

Expand Down
19 changes: 7 additions & 12 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "@akashic/akashic-engine",
"version": "3.16.6",
"version": "3.17.0",
"description": "The core library of Akashic Engine",
"main": "index.js",
"dependencies": {
"@akashic/game-configuration": "~2.1.0",
"@akashic/pdi-types": "~1.12.0",
"@akashic/pdi-types": "^1.13.0",
"@akashic/playlog": "~3.3.0",
"@akashic/trigger": "~2.1.0"
},
Expand Down
4 changes: 3 additions & 1 deletion src/Util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,8 @@ export module Util {
[CompOp.ExperimentalDestinationIn]: "experimental-destination-in",
[CompOp.DestinationOut]: "destination-out",
[CompOp.DestinationOver]: "destination-over",
[CompOp.Xor]: "xor"
[CompOp.Xor]: "xor",
[CompOp.Difference]: "difference",
[CompOp.Saturation]: "saturation"
};
}

0 comments on commit e21d586

Please sign in to comment.