Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
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
14 changes: 7 additions & 7 deletions browser-interface/package-lock.json

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

2 changes: 1 addition & 1 deletion browser-interface/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
"@dcl/legacy-ecs": "^6.11.11",
"@dcl/protocol": "^1.0.0-5812097343.commit-8025576",
"@dcl/rpc": "^1.1.1",
"@dcl/scene-runtime": "7.0.6-20230809174058.commit-2408927",
"@dcl/scene-runtime": "https://sdk-team-cdn.decentraland.org/@dcl/scene-runtime/branch/feat/sdk7-adaption-layer/dcl-scene-runtime-7.0.6-20230827001758.commit-6c356fb.tgz",
"@dcl/schemas": "^9.1.1",
"@dcl/single-sign-on-client": "^0.0.12",
"@dcl/urn-resolver": "^2.2.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ export class EmptyParcelController {
type: EntityType.SCENE,
metadata,
version: 'v3'
}
},
emptyParcel: true
}
}
}
1 change: 1 addition & 0 deletions browser-interface/packages/shared/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,7 @@ export type LoadableScene = {
readonly isGlobalScene?: boolean
readonly isPortableExperience?: boolean
readonly useFPSThrottling?: boolean
readonly emptyParcel?: boolean
}

export type SceneSpawnPoint = {
Expand Down
8 changes: 4 additions & 4 deletions browser-interface/packages/shared/world/SceneWorker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -154,10 +154,10 @@ export class SceneWorker {
defaultLogger.error('Invalid scene metadata', loadableScene.entity.metadata, Scene.validate.errors)
}

const IS_SDK7 =
loadableScene.entity.metadata.runtimeVersion === '7' ||
!!loadableScene.entity.metadata.ecs7 ||
!!loadableScene.entity.metadata.sdk7
// All the scenes are a SDK7 Scene, the SDK6 Scenes are going to use the SDK7 Adaption Layer that is implemented in the SceneRuntime
const globalScene = loadableScene.isGlobalScene || false
const emptyParcel = loadableScene.emptyParcel || false
const IS_SDK7 = !globalScene || !emptyParcel // global scenes, still are sdk6, not included in the adapter

const rpcSceneControllerService = codegen.loadService<any>(scenePort, RpcSceneControllerServiceDefinition)

Expand Down