Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev/asset file #876

Merged
merged 36 commits into from
Jul 20, 2022
Merged
Changes from 1 commit
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
d0e639c
Test: Use Floss and Chai to Replace Jest (#778)
gz65555 May 6, 2022
1fd8e0a
refactor: remove toolkit features (#780)
GuoLei1990 May 11, 2022
8ef6926
v0.7.0-beta.4 (#795)
GuoLei1990 May 11, 2022
42e5a73
Fix:local translate (#706)
cptbtptpbcptdtptp May 16, 2022
0655f28
Add component denpendent decorator (#796)
GuoLei1990 May 16, 2022
e66263d
ci: remove ci on node 12 (#801)
gz65555 May 16, 2022
4de42c9
Update README.md
GuoLei1990 May 16, 2022
b2f8b5f
Fix Test Version Error (#802)
gz65555 May 16, 2022
6f0e38c
feat: add `priority` for renderer to order(#803)
singlecoder May 24, 2022
4a97c91
Fix SkyBox render mirror problem (#816)
GuoLei1990 Jun 2, 2022
3bcf55a
fix: change `region` and `pivot` origin to left-bottom (#809)
cptbtptpbcptdtptp Jun 2, 2022
aef4a77
Merge latest main (#820)
GuoLei1990 Jun 7, 2022
5e04b33
refactor: rename (#827)
zhuxudong Jun 10, 2022
2327b46
v0.7.0-beta.7
GuoLei1990 Jun 10, 2022
14e41c2
feat: physics character controller (#818)
yangfengzzz Jun 16, 2022
107e157
optimization camera code (#830)
cptbtptpbcptdtptp Jun 16, 2022
b01d9b1
Merge branch 'main' into dev/0.8
GuoLei1990 Jun 27, 2022
84e16c4
Merge pull request #842 from GuoLei1990/dev/0.8
GuoLei1990 Jun 27, 2022
0e26e2c
Refactor `cloneTo` to `copyFrom` for math library and rename `setValu…
GuoLei1990 Jun 28, 2022
4f4c5fe
Fix transform`translate` and `rotate` space bug (#847)
GuoLei1990 Jun 29, 2022
b898aa5
Feat(core): add more clear flag item for Camera.clearFlags (#843)
cptbtptpbcptdtptp Jun 29, 2022
dba43c1
v0.8.0-alpha.0
GuoLei1990 Jun 29, 2022
6355c20
v0.8.0-alpha.1
GuoLei1990 Jun 29, 2022
186ace8
Add SpriteRenderer drawMode property(support simple and sliced) (#828)
cptbtptpbcptdtptp Jul 1, 2022
67a12a8
fix: TextureCube is left-hand,so x need inverse (#855)
zhuxudong Jul 5, 2022
6a00825
`InputManager` support pointer button and wheel (#831)
cptbtptpbcptdtptp Jul 5, 2022
859771f
Add basic physics joint component include `FixedJoint`, `SpringJoint`…
yangfengzzz Jul 6, 2022
f589545
Use char cache mode for TextRenderer (#837)
singlecoder Jul 8, 2022
5879282
v0.8.0-alpha.2
GuoLei1990 Jul 8, 2022
64f1c62
v0.8.0-alpha.3
GuoLei1990 Jul 8, 2022
3b34c76
Optimization performance for `TextRenderer` to update world positions…
singlecoder Jul 11, 2022
8497a52
Fix `InputManager` bug (#863)
cptbtptpbcptdtptp Jul 11, 2022
1640447
fix(2d): `SpriteRenderer` can not show error (#865)
singlecoder Jul 11, 2022
31fc74e
v0.8.0-alpha.4
GuoLei1990 Jul 11, 2022
6707b99
v0.8.0-alpha.5
GuoLei1990 Jul 11, 2022
f5b36fa
Merge branch 'dev/0.8' of github.com:oasis-engine/engine into dev/ass…
JujieX Jul 20, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Test: Use Floss and Chai to Replace Jest (#778)
test: Use Floss and Chai to Replace Jest
gz65555 authored May 6, 2022

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit d0e639cd1c2d8a85ab549a6cbc1a62a74c5e6779
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -6,6 +6,7 @@ tmp
/packages/*/node_modules
/packages/*/types
/packages/*/doc
/tests/node_modules
/playground/node_modules
types
/packages/*/test/fixtures/**/node_modules
3 changes: 3 additions & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
registry=https://registry.npm.taobao.org
chromedriver_cdnurl=https://npmmirror.com/mirrors/chromedriver/
electron_mirror=http://npm.taobao.org/mirrors/electron/
3 changes: 2 additions & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -5,7 +5,8 @@
"hoist": true
},
"packages": [
"packages/*"
"packages/*",
"tests/**"
],
"loglevel": "verbose"
}
16 changes: 10 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -7,8 +7,9 @@
],
"scripts": {
"bootstrap": "npm i && lerna bootstrap",
"test": "jest",
"test-cov": "jest --coverage",
"test": "cross-env TS_NODE_PROJECT=tsconfig.tests.json floss --path tests -r ts-node/register",
"test-debug": "cross-env TS_NODE_PROJECT=tsconfig.tests.json floss --path tests -r ts-node/register --debug",
"test-cov": "cross-env TS_NODE_PROJECT=tsconfig.tests.json nyc --reporter=lcov floss --path tests -r ts-node/register",
"ci": "lerna bootstrap && npm run b:module && npm run b:types && npm run test-cov",
"lint": "eslint packages/*/src --ext .ts",
"watch": "cross-env NODE_ENV=development BUILD_TYPE=MODULE rollup -cw -m inline",
@@ -36,27 +37,30 @@
"@rollup/plugin-inject": "^4.0.2",
"@rollup/plugin-node-resolve": "^11.0.1",
"@rollup/plugin-replace": "^2.3.4",
"@types/jest": "^26.0.20",
"@types/chai": "^4.3.1",
"@types/mocha": "^8.0.0",
"@types/offscreencanvas": "^2019.6.4",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"chai": "^4.3.6",
"cross-env": "^5.2.0",
"electron": "^13",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.1.1",
"floss": "^5.0.1",
"husky": "^4.3.7",
"jest": "~24",
"jest-electron": "^0.1.11",
"lerna": "^3.22.1",
"lint-staged": "^10.5.3",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"rollup": "^2.36.1",
"rollup-plugin-glslify": "^1.2.0",
"rollup-plugin-modify": "^3.0.0",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-terser": "^7.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.4.3"
},
"husky": {
39 changes: 0 additions & 39 deletions packages/controls/tests/OrthoControl.test.ts

This file was deleted.

96 changes: 0 additions & 96 deletions packages/core/tests/AssetPromise.test.ts

This file was deleted.

72 changes: 0 additions & 72 deletions packages/core/tests/Background.test.ts

This file was deleted.

74 changes: 0 additions & 74 deletions packages/core/tests/BufferMesh.test.ts

This file was deleted.

Loading