-
Notifications
You must be signed in to change notification settings - Fork 1
3Dシーン
Reputeless edited this page Mar 14, 2017
·
3 revisions
# include <Siv3D.hpp>
void Main()
{
std::array<Light, Graphics3D::MaxLight> lights;
for (auto& light : lights)
{
const Vec3 pos{ Random(-40., 40.), 2.0, Random(-40., 40.) };
light = Light::Point(pos, 6, HSV(Random(360)).toColorF());
}
const Texture texture(L"Example/Particle.png", TextureDesc::For3D);
GUI gui(GUIStyle::Default);
gui.add(GUIText::Create(L"ライトの数", 100));
gui.add(L"Slider.Lights", GUISlider::Create(0, 1.0*Graphics3D::MaxLight, 10, 200));
gui.addln(L"Text.Lights", GUIText::Create(L"10", 40));
gui.add(GUIText::Create(L"ライトの品質", 100));
gui.add(L"Quality", GUISlider::Create(1, 100, 100, 200));
gui.addln(L"Quality", GUIText::Create(L"100", 40));
gui.add(GUIText::Create(L"アンチエイリアシング"));
gui.add(L"FXAA", GUIToggleSwitch::Create(L"Off", L"On", true));
Graphics3D::SetBlendStateForward(BlendState::Additive);
Graphics3D::SetDepthStateForward(DepthState::TestOnly);
while (System::Update())
{
Graphics3D::FreeCamera();
if (Input::MouseR.clicked)
{
gui.show(!gui.style.visible);
}
if (gui.slider(L"Quality").hasChanged)
{
const int quality = gui.slider(L"Quality").valueInt;
gui.text(L"Quality").text = Format(quality);
Graphics3D::SetLightBufferQuality(quality);
}
if (gui.toggleSwitch(L"FXAA").hasChanged)
{
Graphics3D::SetAntiAliasing(gui.toggleSwitch(L"FXAA").isRight ? AntiAliasing::Low : AntiAliasing::None);
}
const int lightNum = gui.slider(L"Slider.Lights").valueInt;
gui.text(L"Text.Lights").text = Format(lightNum);
Array<Particle> particles;
for (auto i : step(static_cast<int>(Graphics3D::MaxLight)))
{
if (i < lightNum)
{
Graphics3D::SetLight(i, lights[i]);
particles.emplace_back(lights[i].position, 0.5, lights[i].diffuse);
}
else
{
Graphics3D::SetLight(i, Light::None());
}
}
Plane(100).draw();
for (auto x : step(10))
{
Box({ (x - 4) * 7, (x + 1)*0.5, 30 }, { 2, (x + 1), 2 }).draw();
}
for (auto x : step(5))
{
Cone({ (x - 2) * 15, 0, 15 }, x + 1, x + 1).draw();
}
for (auto x : step(5))
{
Sphere({ (x - 2) * 15, x + 1, -5 }, x + 1).draw();
}
for (auto x : step(10))
{
Cylinder({ (x - 4) * 7, (x + 1)*0.5, -20 }, 1.0, x + 1).draw();
}
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