This file has been truncated, but you can view the full file.
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
{"type":"hora","kyoku":1,"bakaze":"E","actor":0,"target":0,"pai":"2p","dora_markers":["4m"],"uradora_markers":["4s"],"hora_tehais":["7m","8m","9m","3p","4p","5p","6p","7p","2s","2s","7s","8s","9s"],"hora_furos":[],"yakus":[["reach",1.0],["menzenchin_tsumoho",1.0],["pinfu",1.0]],"fu":20,"fan":3,"hora_points":3900,"deltas":[4900,-1300,-1300,-1300],"scores":[28900,23700,23700,23700]} | |
{"type":"hora","kyoku":1,"bakaze":"E","actor":2,"target":2,"pai":"4s","dora_markers":["E"],"uradora_markers":[],"hora_tehais":["3m","4m","5m","4s","5sr","5s","5s"],"hora_furos":[["minsyun","6p","7p","8p"],["minko","W","W","W"]],"yakus":[["jikaze",1.0],["akadora",1.0]],"fu":40,"fan":2,"hora_points":2700,"deltas":[-1400,-800,3000,-800],"scores":[27500,22900,26700,22900]} | |
{"type":"hora","kyoku":2,"bakaze":"E","actor":1,"target":0,"pai":"7s","dora_markers":["8p"],"uradora_markers":["9m"],"hora_tehais":["1m","1m","4m","5m","6m","3p","4p","5p","8s","9s","9s","9s","9s"],"hora_furos":[],"yakus":[["reach",1.0],["uradora",2.0]],"fu":40,"fan": |
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
using UnityEngine; | |
using System.Collections; | |
public class Blinker : MonoBehaviour | |
{ | |
private float nextTime; | |
public float interval = 1.0f;// 点滅周期 | |
public float brightDiff = 1.0f;// 明るさの変更幅。 初期値 ~ 初期値+brightDiff のレンジで値が変更される。 | |
private float brightAdder; |