キーワード Property が含まれる動画 : 1550 件中 65 - 96 件目
種類:
- タグ
- キーワード
対象:
Safe House Services
Safe House Services specialise in building and property maintenance services throughout London and the south of the UK. Services include plumbing services, Gas Engineers for boiler installation and services, central heating repairs and maintenance and emergency plumbing and heating services, Electrical services including EICR services and all general trades for maintenance and repairs. Our teams maintain properties for landlords and homeowners throughout London and the south of the United Kingdom who want property maintenance and repairs carried out quickly and with minimal fuss.
Safe House Services
7 Downlands Parade, Upper Brighton Road, Worthing Sussex BN149JH
01903 372137
https://safehouseservices.co.uk/
【オリジナルBGM】Lost property/箱フォ
クリエイターズグループの箱の中のユーフォリアと申します。
「Music Box」と題しまして、需要があるようでないような作業のお供にできるBGMを半不定期にあげていきます!
イラストはメンバーのものを使用しております。ご興味ある方は是非サイトまで!
・公式サイト
http://hakofo.com/
他にはないような変わった素材を扱っている素材集もございます!
・公式ツイッター
@hakoyufo
箱フォの最新情報をグループのマスコット、マサルくんが呟いています!
箱の中のユーフォリア/Music Box project
mylist/39356375
niveサンプル講座 超『簡単』 実用エクスプレッション
int x=5,y=5,interval=3;
int transparency=50;
PointFProperty pos = (PointFProperty)ExpressionUtils.GetProperty(Property.ThisProperty, "位置");
Random rnd = new Random(Property.Index);
if((Property.Index % interval)==0){
pos.X = +rnd.Next(-x, x);
pos.Y = -rnd.Next(-y, y);
}
SingleProperty toumei = (SingleProperty)ExpressionUtils.GetProperty(Property.ThisProperty, "不透明度");
toumei.TypeSafeValue = (float)rnd.Next(transparency, 100);
niveサンプル講座 超『簡単』 実用エクスプレッション2 揺らす
float scale=15; // 振れ幅
double speed=10; // (角度/フレーム)
PointFProperty pos = (PointFProperty)ExpressionUtils.GetProperty(Property.ThisProperty, "位置");
//pos.X = pos.X + ( (float)Math.Cos(speed * Property.Index * Math.PI / 180) * scale );
pos.Y = pos.Y + ( (float)Math.Sin(speed * Property.Index * Math.PI / 180) * scale );
