-
Notifications
You must be signed in to change notification settings - Fork 1
パーティクル
Reputeless edited this page Mar 14, 2017
·
5 revisions
3D パーティクルは常にカメラのほうを向いて描画されます。
Graphics3D::DrawParticlesForward()
は Array<Particle>
で定義されたパーティクルを Forward Rendering で描画します。
# include <Siv3D.hpp>
void Main()
{
const int32 w = 80, h = 80;
Array<Particle> particles(w * h);
for (int32 y = 0; y < h; ++y)
{
for (int32 x = 0; x < w; ++x)
{
const Vec3 pos(x - w / 2, Random(10.0), y - h / 2);
const ColorF color = HSV(pos.y * 20.0);
particles[y * w + x] = Particle(pos, 0.5, color);
}
}
const Texture texture(L"Example/Particle.png", TextureDesc::For3D);
Graphics3D::SetBlendStateForward(BlendState::Additive);
Graphics3D::SetDepthStateForward(DepthState::TestOnly);
while (System::Update())
{
Graphics3D::FreeCamera();
Graphics3D::DrawParticlesForward(particles, texture);
}
}
# include <Siv3D.hpp>
void Main()
{
Graphics::SetBackground(Color(20, 40, 60));
Graphics3D::SetLight(0, Light::None());
const Texture textureGrass(L"Example/Grass.jpg", TextureDesc::For3D);
Array<Particle> particles(400);
for (auto& particle : particles)
{
const Vec3 pos = RandomVec3({ -20, 20 }, { -0.2, 4 }, { -20, 20 });
particle = Particle(pos, 0.2, ColorF(1.0, 0.6, 0.0));
}
const Texture texture(L"Example/Particle.png", TextureDesc::For3D);
Graphics3D::SetBlendStateForward(BlendState::Additive);
Graphics3D::SetDepthStateForward(DepthState::TestOnly);
while (System::Update())
{
Graphics3D::FreeCamera();
for (auto& particle : particles)
{
particle.pos.y += 0.01f;
if (4.0 < particle.pos.y)
{
particle.pos.y -= 4.2f;
}
const float s = 1.0f - (Abs(2.0f - particle.pos.y) / 2.0f);
particle.scaling.x = particle.scaling.y = 0.2f * s;
particle.color.w = s;
}
Plane(40).draw(textureGrass);
Graphics3D::DrawParticlesForward(particles, texture);
}
}
- Siv3D の基本
- 図形を描く
- テクスチャを描く
- テキストを描く
- 文字列と数値の変換
- キーボード入力
- マウス入力
- サウンドの再生
- MIDI の再生
- ウィンドウと背景
- 図形のあたり判定
- 乱数
- ダイアログ
- ドラッグ & ドロップ
- アプリの状態
- テキストファイル
- INI, CSV, JSON
- バイナリファイル
- GUI
- アセット管理
- 画像編集
- Web カメラ
- マイク入力
- 経過時間の測定
- HSV カラー
- ファイルダウンロード
- 3D 描画
- 2D のレンダーステート
- 3D のレンダーステート
- パーティクル
- スクリーンショット
- アプリケーションの公開
- さらに学ぶには
- アプリランチャーを作ろう
- 音楽プレイヤーを作ろう
- 横スクロールゲームを作ろう
- ドット絵エディタを作ろう
- シーン遷移をサポートする SceneManager の使い方
- Siv3D ミニサンプル集
- タスクシステムを使う
- スケッチ
- 画像ビューアー
- オーディオスペクトラム
- マイク入力スペクトラム
- 文字色の反転
- 天気予報
- ドットお絵かき
- 15パズル
- ブロックくずし
- 時計
- 音楽プレイヤー
- ピアノ
- ライフゲーム
- シーン管理
- 地球
- 3Dシーン
- 3D交差判定
- Wooden Mirror
- シューティングゲーム
- Image to Polygon
- Sketch to Polygon
- 軌跡
- Plot3D
- テンポとピッチの変更
- 長方形の影
- Twitterクライアント
- Polygon to Mesh
- 3Dテキスト
- アプリ終了の確認
- 地形の生成
- アーカイブファイル
- GUIのアニメーション
- Aero Glassエフェクト
- Glitch
- リンクテキスト
- 付箋
- シーン切り替え(シルエット)
- MIDIシーケンサー
- 数つなぎ
- 画面を揺らす
- 対称定規
- aobench
- MIDIビジュアライザー
- 電卓
- 手書き文字認識
- 顔検出
- 音声合成
- Image to PhysicsBody