Steamをインストール
ログイン
|
言語
简体中文(簡体字中国語)
繁體中文(繁体字中国語)
한국어 (韓国語)
ไทย (タイ語)
български (ブルガリア語)
Čeština(チェコ語)
Dansk (デンマーク語)
Deutsch (ドイツ語)
English (英語)
Español - España (スペイン語 - スペイン)
Español - Latinoamérica (スペイン語 - ラテンアメリカ)
Ελληνικά (ギリシャ語)
Français (フランス語)
Italiano (イタリア語)
Bahasa Indonesia(インドネシア語)
Magyar(ハンガリー語)
Nederlands (オランダ語)
Norsk (ノルウェー語)
Polski (ポーランド語)
Português(ポルトガル語-ポルトガル)
Português - Brasil (ポルトガル語 - ブラジル)
Română(ルーマニア語)
Русский (ロシア語)
Suomi (フィンランド語)
Svenska (スウェーデン語)
Türkçe (トルコ語)
Tiếng Việt (ベトナム語)
Українська (ウクライナ語)
翻訳の問題を報告
const int OnOffChance = 70; // percent
const int DimChance = 8; // percent
const int PauseChance = 20; // percent
const int PauseMin = 35000; // milliseconds
const int PauseMax = 78000; // milliseconds
as well?
When you add a light (or group of) it stores the original values and restores those values when you remove the light from the script. (but only for on/off, intensity and radius)
If you have another script modifying on/off, radius or intensity you will probably see some undesired result, but for color and blinking settings it should be fine as this script doesn't change those at all.
Will it interfere with color changing scripts?`
Can I add one or two lights out of a group of a dozen lights whose color and blinking status is changed by another script?
I really want to try it asap!
Thanks for the update letting me know it resolved.
If you're adding lights to the script when they're needed and removing them when not, the script will stop running when there are no lights to process. The script runs 6 times per second, so that's wasteful if there are no lights to process.
You only need one programmable block for many lights though, just add them seperately
-l "Light 1" -add
-l "Light 2" -add
etc.
You'll see lights currently processing in the bottom right of the programmable block screen in console
Looking forward to seeing what you make of it, Splitsie!