-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #32 from playx-flutter/qa
Update to V0.0.3
- Loading branch information
Showing
80 changed files
with
453 additions
and
115 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
## 0.0.3 | ||
- Enhance package imports. | ||
|
||
## 0.0.2 | ||
- Add support for Dart 3.0.0 and Flutter 3.10 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
export 'src/view/playx_3d_scene.dart'; | ||
export 'src/utils/result.dart'; | ||
export 'src/controller/playx_3d_scene_controller.dart'; | ||
export 'src/models/model/animation.dart'; | ||
export 'src/models/model/glb_model.dart'; | ||
export 'src/models/model/gltf_model.dart'; | ||
export 'src/models/model/model.dart'; | ||
export 'src/models/scene/camera/camera.dart'; | ||
export 'src/models/scene/camera/exposure.dart'; | ||
export 'src/models/scene/camera/lens_projection.dart'; | ||
export 'src/models/scene/camera/projection.dart'; | ||
export 'src/models/scene/camera/enums/camera_mode.dart'; | ||
export 'src/models/scene/camera/enums/fov.dart'; | ||
export 'src/models/scene/camera/enums/projection_type.dart'; | ||
export 'src/models/scene/geometry/direction.dart'; | ||
export 'src/models/scene/geometry/position.dart'; | ||
export 'src/models/scene/geometry/size.dart'; | ||
export 'src/models/scene/indirect_light/default_indirect_light.dart'; | ||
export 'src/models/scene/indirect_light/hdr_indirect_light.dart'; | ||
export 'src/models/scene/indirect_light/indirect_light.dart'; | ||
export 'src/models/scene/indirect_light/ktx_indirect_light.dart'; | ||
export 'src/models/scene/light/light.dart'; | ||
export 'src/models/scene/light/light_type.dart'; | ||
export 'src/models/scene/material/material.dart'; | ||
export 'src/models/scene/material/material_parameter.dart'; | ||
export 'src/models/scene/material/material_type.dart'; | ||
export 'src/models/scene/material/texture/texture.dart'; | ||
export 'src/models/scene/material/texture/texture_sampler.dart'; | ||
export 'src/models/scene/material/texture/enums/mag_filter.dart'; | ||
export 'src/models/scene/material/texture/enums/min_filter.dart'; | ||
export 'src/models/scene/material/texture/enums/texture_type.dart'; | ||
export 'src/models/scene/material/texture/enums/wrap_mode.dart'; | ||
export 'src/models/scene/skybox/colored_skybox.dart'; | ||
export 'src/models/scene/skybox/hdr_skybox.dart'; | ||
export 'src/models/scene/skybox/ktx_skybox.dart'; | ||
export 'src/models/scene/skybox/skybox.dart'; | ||
export 'src/models/scene/ground.dart'; | ||
export 'src/models/scene/scene.dart'; | ||
export 'src/models/shapes/cube.dart'; | ||
export 'src/models/shapes/plane.dart'; | ||
export 'src/models/shapes/shape.dart'; | ||
export 'src/models/shapes/sphere.dart'; | ||
export 'src/models/state/model_state.dart'; | ||
export 'src/models/state/scene_state.dart'; | ||
export 'src/models/state/shape_state.dart'; | ||
|
||
|
||
|
||
|
26 changes: 13 additions & 13 deletions
26
...controller/playx_3d_scene_controller.dart → ...controller/playx_3d_scene_controller.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
lib/models/model/gltf_model.dart → lib/src/models/model/gltf_model.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
lib/models/model/model.dart → lib/src/models/model/model.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 5 additions & 5 deletions
10
lib/models/scene/camera/camera.dart → lib/src/models/scene/camera/camera.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
lib/models/scene/camera/projection.dart → lib/src/models/scene/camera/projection.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions
4
lib/models/scene/ground.dart → lib/src/models/scene/ground.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...ndirect_light/default_indirect_light.dart → ...ndirect_light/default_indirect_light.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...ne/indirect_light/hdr_indirect_light.dart → ...ne/indirect_light/hdr_indirect_light.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
.../scene/indirect_light/indirect_light.dart → .../scene/indirect_light/indirect_light.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...ne/indirect_light/ktx_indirect_light.dart → ...ne/indirect_light/ktx_indirect_light.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
lib/models/scene/light/light.dart → lib/src/models/scene/light/light.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
lib/models/scene/material/material.dart → lib/src/models/scene/material/material.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...ls/scene/material/material_paramater.dart → ...ls/scene/material/material_parameter.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...ne/material/texture/enums/mag_filter.dart → ...ne/material/texture/enums/mag_filter.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions
4
...odels/scene/material/texture/texture.dart → ...odels/scene/material/texture/texture.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...ene/material/texture/texture_sampler.dart → ...ene/material/texture/texture_sampler.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 5 additions & 5 deletions
10
lib/models/scene/scene.dart → lib/src/models/scene/scene.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
lib/models/scene/skybox/colored_skybox.dart → ...c/models/scene/skybox/colored_skybox.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
lib/models/scene/skybox/hdr_skybox.dart → lib/src/models/scene/skybox/hdr_skybox.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
lib/models/scene/skybox/ktx_skybox.dart → lib/src/models/scene/skybox/ktx_skybox.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
lib/models/scene/skybox/skybox.dart → lib/src/models/scene/skybox/skybox.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
lib/models/shapes/cube.dart → lib/src/models/shapes/cube.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
lib/models/shapes/plane.dart → lib/src/models/shapes/plane.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 6 additions & 6 deletions
12
lib/models/shapes/shape.dart → lib/src/models/shapes/shape.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
lib/models/shapes/sphere.dart → lib/src/models/shapes/sphere.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.