37 lines
1.3 KiB
Markdown
37 lines
1.3 KiB
Markdown
---
|
|
sidebar_position: 4
|
|
---
|
|
|
|
# Spinning Panel Setup
|
|
|
|
## Overview
|
|
The spinning panel system includes the **reel slot panel** and additional panels: `landing-panel`, `tension-panel`, `present-win-cell-panel`, and `present-win-border-panel`.
|
|
|
|
## Panel Setup
|
|
- **Landing Panel**:
|
|
- 
|
|
- **Script**:
|
|
```jsx
|
|
SlottySetting.prototype._registerInjection = function () {
|
|
DIContainer.Register('landingGenerator', require('landing-generator'));
|
|
};
|
|
```
|
|
|
|
- **Present Win Cell Panel**:
|
|
- 
|
|
|
|
- **Present Win Border Panel**:
|
|
- 
|
|
|
|
- **Tension Panel**:
|
|
- 
|
|
- For custom size frames, set **sizeMode** to **Custom** and configure the static frame and size.
|
|
- 
|
|
- **Check Toggle**: Ensure the general panel toggle is correctly set.
|
|
- 
|
|
- **Script**:
|
|
```jsx
|
|
SlottySetting.prototype._registerInjection = function () {
|
|
DIContainer.Register('tensionGenerator', require('tension-generator'));
|
|
};
|
|
``` |