add setup main scene
11
docs/02-setup-main-game/05-main-scene/01-system.md
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
---
|
||||||
|
sidebar_position: 1
|
||||||
|
---
|
||||||
|
|
||||||
|
# System
|
||||||
|
|
||||||
|
> To be added
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
> To be added
|
76
docs/02-setup-main-game/05-main-scene/02-background.md
Normal file
@ -0,0 +1,76 @@
|
|||||||
|
---
|
||||||
|
sidebar_position: 2
|
||||||
|
---
|
||||||
|
|
||||||
|
# Background
|
||||||
|
|
||||||
|
Is the visual scenery that appears behind the gameplay elements.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
The background consists of 2 parts: **Landscape** and **Portrait**.
|
||||||
|
|
||||||
|
- **Landscape** use for Desktop and Mobile landscape.
|
||||||
|
- **Portrait** only use for Mobile portrait.
|
||||||
|
|
||||||
|
| | Desktop | Mobile |
|
||||||
|
|:-:|--------------|---------|
|
||||||
|
|**Background Landscape**<br/>|<br/>|<br/>|
|
||||||
|
|**Background Portrait**<br/>||<br/>|
|
||||||
|
|
||||||
|
### 1. Prepare the assets
|
||||||
|
| | Assets | Description |
|
||||||
|
|:-:|--------------|---------|
|
||||||
|
|**Static**<br/>||Static background is necessary for the game|
|
||||||
|
|**Animation**<br/>||Animation background may or may not be present, depending on the game design|
|
||||||
|
|
||||||
|
### 2. Setup Background Landscape
|
||||||
|
|
||||||
|
We use sprite frame background for landscape from prepared assets.
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
### 3. Setup Background Portrait
|
||||||
|
|
||||||
|
We use sprite frame background for mobile from prepared assets.
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
### 4. Setup Background Animation
|
||||||
|
|
||||||
|
If the game have design animation for background, we will do this step.
|
||||||
|
|
||||||
|
**Setp 1:** Using hepler to generate animation from prepared assets
|
||||||
|
|
||||||
|

|
||||||
|

|
||||||
|
|
||||||
|
**Setp 2:**. Stup for spine-animation
|
||||||
|
- `Is Loop`: is ✅ because this animation will play through the game.
|
||||||
|
- `Static Sprite Frame`: It will be displayed when the animation has not finished loading.
|
||||||
|
|
||||||
|

|
||||||
|

|
||||||
|
|
||||||
|
**Setp 3:**. Add animation background with components below:
|
||||||
|
|
||||||
|
**Landscape:**
|
||||||
|
- Create `Empty Node` with name `anim-background-main-game`.
|
||||||
|
- Add `animation-play-on-enable` with animation name in **Animation Provider**.
|
||||||
|
- Add `background-scaler`, used to resize according to screen resolution.
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
**Portrait:**
|
||||||
|
|
||||||
|
- Create `Empty Node` with name `mobile-background-anim-portrait`.
|
||||||
|
- Add `mobile-portrait-background-ui-controller` to display only on **Mobile**.
|
||||||
|
- Add `orientation-ui-controller` to display on Portrait with the options below.
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
- Create `Empty Node` with name `anim-background-main-game`.
|
||||||
|
- Add `animation-play-on-enable` with animation name in **Animation Provider**.
|
||||||
|
- Add `portrait-anim-background-scaler`, used to resize according to screen resolution.
|
||||||
|
|
||||||
|

|
11
docs/02-setup-main-game/05-main-scene/03-reel-slot.md
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
---
|
||||||
|
sidebar_position: 2
|
||||||
|
---
|
||||||
|
|
||||||
|
# Reel Slot
|
||||||
|
|
||||||
|
> To be added
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
> To be added
|
11
docs/02-setup-main-game/05-main-scene/04-spinning-panel.md
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
---
|
||||||
|
sidebar_position: 4
|
||||||
|
---
|
||||||
|
|
||||||
|
# Spinning Panel
|
||||||
|
|
||||||
|
> To be added
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
> To be added
|
11
docs/02-setup-main-game/05-main-scene/05-present-win.md
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
---
|
||||||
|
sidebar_position: 5
|
||||||
|
---
|
||||||
|
|
||||||
|
# Prensent Win
|
||||||
|
|
||||||
|
> To be added
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
> To be added
|
11
docs/02-setup-main-game/05-main-scene/06-special-win.md
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
---
|
||||||
|
sidebar_position: 6
|
||||||
|
---
|
||||||
|
|
||||||
|
# Special Win
|
||||||
|
|
||||||
|
Is a game mechanic that allows players to earn significantly higher rewards than usual, typically triggered by rare or specific conditions during gameplay.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
> To be added
|
11
docs/02-setup-main-game/05-main-scene/07-item-description.md
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
---
|
||||||
|
sidebar_position: 7
|
||||||
|
---
|
||||||
|
|
||||||
|
# Item Description
|
||||||
|
|
||||||
|
> To be Add
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
> To be Add
|
11
docs/02-setup-main-game/05-main-scene/08-free-round.md
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
---
|
||||||
|
sidebar_position: 8
|
||||||
|
---
|
||||||
|
|
||||||
|
# Free Round
|
||||||
|
|
||||||
|
> To be added
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
> To be added
|
31
docs/02-setup-main-game/05-main-scene/09-info-page.md
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
---
|
||||||
|
sidebar_position: 9
|
||||||
|
---
|
||||||
|
|
||||||
|
# Info Page
|
||||||
|
|
||||||
|
Info Page (Information Page) provides players with essential details about how the game works. It helps players understand the rules, features, symbols, payout structures, and other gameplay mechanics.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Paytable
|
||||||
|
|
||||||
|
Shows the value of each symbol and how much players can win from different combinations.
|
||||||
|
|
||||||
|
## Special Feature
|
||||||
|
|
||||||
|
Describes bonus rounds, free spins, jackpots, or other special win features.
|
||||||
|
|
||||||
|
## Gamble Feature
|
||||||
|
|
||||||
|
The Gamble Feature is a special option that allows players to risk their recent winnings for a chance to multiply them.
|
||||||
|
|
||||||
|
## Game Rules
|
||||||
|
|
||||||
|
Explains the basic mechanics and objectives of the game.
|
||||||
|
|
||||||
|
## Winning Lines or Ways
|
||||||
|
|
||||||
|
This section shows the valid winning combinations or paylines.
|
||||||
|
|
||||||
|
> To be added
|
17
docs/02-setup-main-game/05-main-scene/_category_.json
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"position": 11,
|
||||||
|
"label": "Main Scene",
|
||||||
|
"collapsible": true,
|
||||||
|
"collapsed": false,
|
||||||
|
"link": {
|
||||||
|
"type": "generated-index",
|
||||||
|
"title": "Setup Main Game",
|
||||||
|
"description": "This is where all the magic happen.",
|
||||||
|
"keywords": [
|
||||||
|
"setup",
|
||||||
|
"main game",
|
||||||
|
"game logic",
|
||||||
|
"structure"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
After Width: | Height: | Size: 53 KiB |
After Width: | Height: | Size: 3.4 KiB |
After Width: | Height: | Size: 9.7 KiB |
After Width: | Height: | Size: 14 KiB |
After Width: | Height: | Size: 4.4 KiB |
After Width: | Height: | Size: 4.7 KiB |
After Width: | Height: | Size: 16 KiB |
After Width: | Height: | Size: 60 KiB |
After Width: | Height: | Size: 220 KiB |
After Width: | Height: | Size: 195 KiB |
After Width: | Height: | Size: 190 KiB |
After Width: | Height: | Size: 208 KiB |
After Width: | Height: | Size: 138 KiB |
After Width: | Height: | Size: 8.3 KiB |
After Width: | Height: | Size: 11 KiB |
After Width: | Height: | Size: 102 KiB |
After Width: | Height: | Size: 100 KiB |
After Width: | Height: | Size: 39 KiB |
After Width: | Height: | Size: 57 KiB |
After Width: | Height: | Size: 54 KiB |
After Width: | Height: | Size: 64 KiB |
After Width: | Height: | Size: 20 KiB |
After Width: | Height: | Size: 99 KiB |
After Width: | Height: | Size: 100 KiB |
After Width: | Height: | Size: 452 KiB |
After Width: | Height: | Size: 219 KiB |
After Width: | Height: | Size: 78 KiB |
After Width: | Height: | Size: 78 KiB |
After Width: | Height: | Size: 5.8 KiB |
After Width: | Height: | Size: 41 KiB |
After Width: | Height: | Size: 239 KiB |
After Width: | Height: | Size: 3.0 KiB |
After Width: | Height: | Size: 329 KiB |
After Width: | Height: | Size: 13 KiB |
After Width: | Height: | Size: 223 KiB |
After Width: | Height: | Size: 27 KiB |
After Width: | Height: | Size: 4.3 KiB |
After Width: | Height: | Size: 144 KiB |
After Width: | Height: | Size: 264 KiB |
After Width: | Height: | Size: 269 KiB |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 2.7 KiB |
After Width: | Height: | Size: 4.9 KiB |
After Width: | Height: | Size: 4.9 KiB |
After Width: | Height: | Size: 30 KiB |
After Width: | Height: | Size: 2.4 KiB |
After Width: | Height: | Size: 2.1 KiB |
After Width: | Height: | Size: 4.5 KiB |
After Width: | Height: | Size: 4.3 KiB |
After Width: | Height: | Size: 2.6 KiB |
After Width: | Height: | Size: 4.7 KiB |
After Width: | Height: | Size: 6.0 KiB |
After Width: | Height: | Size: 3.9 KiB |
After Width: | Height: | Size: 3.7 KiB |
After Width: | Height: | Size: 4.2 KiB |
After Width: | Height: | Size: 5.0 KiB |
After Width: | Height: | Size: 4.5 KiB |
After Width: | Height: | Size: 29 KiB |
After Width: | Height: | Size: 28 KiB |
After Width: | Height: | Size: 2.4 KiB |
After Width: | Height: | Size: 2.3 KiB |
After Width: | Height: | Size: 65 KiB |
After Width: | Height: | Size: 3.5 KiB |
After Width: | Height: | Size: 16 KiB |
After Width: | Height: | Size: 5.2 KiB |
After Width: | Height: | Size: 17 KiB |
After Width: | Height: | Size: 23 KiB |
After Width: | Height: | Size: 5.0 KiB |
After Width: | Height: | Size: 17 KiB |
After Width: | Height: | Size: 42 KiB |
After Width: | Height: | Size: 21 KiB |
After Width: | Height: | Size: 270 KiB |
After Width: | Height: | Size: 548 KiB |
After Width: | Height: | Size: 5.8 KiB |
After Width: | Height: | Size: 90 KiB |
After Width: | Height: | Size: 5.5 KiB |
After Width: | Height: | Size: 14 KiB |
After Width: | Height: | Size: 23 KiB |
After Width: | Height: | Size: 17 KiB |
After Width: | Height: | Size: 115 KiB |
After Width: | Height: | Size: 207 KiB |
After Width: | Height: | Size: 122 KiB |
After Width: | Height: | Size: 29 KiB |
After Width: | Height: | Size: 23 KiB |
After Width: | Height: | Size: 216 KiB |
After Width: | Height: | Size: 47 KiB |
After Width: | Height: | Size: 86 KiB |
After Width: | Height: | Size: 4.1 KiB |
After Width: | Height: | Size: 109 KiB |
After Width: | Height: | Size: 18 KiB |