GS2-LoginReward Script トリガーリファレンス
GS2-LoginRewardで定義されている、拡張スクリプトを呼び出すイベントトリガーのリファレンス
receive
受け取り実行前にGS2-Scriptを呼び出すイベントトリガー
Request
| 型 | 説明 |
---|
namespace | Namespace | ネームスペース |
bonusModel | BonusModel | ボーナスモデル |
userId | string | 受け取りを実行しているユーザID |
receiveStep | int | 受け取ったステップ |
config | Config[] | トランザクションの変数に適用する設定値 |
Result
| 型 | 必須 | デフォルト | 値の制限 | 説明 |
---|
permit | bool | ✓ | | | 受け取りを許可するか |
実装例
namespace = args.namespace
bonusModel = args.bonusModel
userId = args.userId
receiveStep = args.receiveStep
config = args.config
result = {
permit=permit
}
receiveDone
受け取り実行後にGS2-Scriptを呼び出すイベントトリガー
Request
| 型 | 説明 |
---|
namespace | Namespace | ネームスペース |
bonusModel | BonusModel | ボーナスモデル |
userId | string | 受け取りを実行しているユーザID |
receiveStep | int | 受け取ったステップ |
config | Config[] | トランザクションの変数に適用する設定値 |
Result
実装例
namespace = args.namespace
bonusModel = args.bonusModel
userId = args.userId
receiveStep = args.receiveStep
config = args.config
result = {
}