Last Modified: 2023-03-11

Components

example bookFree/page1

.
├── assets
├── commands
├── components <==== page components
│   ├── page1
│   │   ├── audios
│   │   ├── layers
│   │   │   ├── bg.lua
│   │   │   ├── gotoBtn.lua
│   │   │   ├── gotoBtn_animation.lua <=== animation component lua
│   │   │   ├── title.lua
│   │   │   └── title_animation.lua <=== animation component lua
│   │   ├── groups
│   │   ├── page
│   │   ├── times
│   │   ├── variables
│   │   └── index.lua
│   └── page2
├── models
│   ├── page1
│   │   ├── bg.json
│   │   ├── events
│   │   │   └── eventOne.json
│   │   ├── gotoBtn.json
│   │   ├── gotoBtn_animation.json <=== animation component json
│   │   ├── index.json
│   │   ├── title.json
│   │   └── title_animation.json <=== animation component json
│   └── page2