articodeltd / angular-cesium

JavaScript library for creating map based web apps using Cesium and Angular
https://github.com/articodeltd/angular-cesium/settings/pages
MIT License
178 stars 93 forks source link

How exactly is the SceneMode.PERFORMANCE_SCENE2D more performant than SCENE_3D #422

Open TJPovey opened 2 years ago

TJPovey commented 2 years ago

From what I can tell, the only difference is that this mode is a 3D scene with these properties set to false:

        this.screenSpaceCameraController.enableTilt = false;
        this.screenSpaceCameraController.enableRotate = false;
        this.screenSpaceCameraController.enableLook = false;

Is this the only difference?