Skip to content

パーティクル

Reputeless edited this page Mar 14, 2017 · 5 revisions

3D パーティクル

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);
	}
}

3D パーティクルのアニメーション

# 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 について

  1. Siv3D の基本
  2. 図形を描く
  3. テクスチャを描く
  4. テキストを描く
  5. 文字列と数値の変換
  6. キーボード入力
  7. マウス入力
  8. サウンドの再生
  9. MIDI の再生
  10. ウィンドウと背景
  11. 図形のあたり判定
  12. 乱数
  13. ダイアログ
  14. ドラッグ & ドロップ
  15. アプリの状態
  16. テキストファイル
  17. INI, CSV, JSON
  18. バイナリファイル
  19. GUI
  20. アセット管理
  21. 画像編集
  22. Web カメラ
  23. マイク入力
  24. 経過時間の測定
  25. HSV カラー
  26. ファイルダウンロード
  27. 3D 描画
  28. 2D のレンダーステート
  29. 3D のレンダーステート
  30. パーティクル
  31. スクリーンショット
  32. アプリケーションの公開
  33. さらに学ぶには

表現テクニック集

入出力デバイス

開発のヒント

Clone this wiki locally