quake2ts 0.0.652 → 0.0.653
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/packages/test-utils/dist/index.cjs +5 -2
- package/packages/test-utils/dist/index.cjs.map +1 -1
- package/packages/test-utils/dist/index.d.cts +2 -2
- package/packages/test-utils/dist/index.d.ts +2 -2
- package/packages/test-utils/dist/index.js +5 -2
- package/packages/test-utils/dist/index.js.map +1 -1
package/package.json
CHANGED
|
@@ -822,8 +822,11 @@ function createSpawnTestContext(mapName) {
|
|
|
822
822
|
function createCombatTestContext() {
|
|
823
823
|
return createTestContext();
|
|
824
824
|
}
|
|
825
|
-
function createPhysicsTestContext() {
|
|
826
|
-
|
|
825
|
+
function createPhysicsTestContext(bspModel) {
|
|
826
|
+
const context = createTestContext();
|
|
827
|
+
if (bspModel) {
|
|
828
|
+
}
|
|
829
|
+
return context;
|
|
827
830
|
}
|
|
828
831
|
function createEntity() {
|
|
829
832
|
return new import_game2.Entity(1);
|