-
Notifications
You must be signed in to change notification settings - Fork 1
3Dのレンダーステート
Reputeless edited this page Mar 14, 2017
·
5 revisions
ブレンドステートは Forward Rendering のみ有効です。
# include <Siv3D.hpp>
void Main()
{
Graphics::SetBackground(Color(80, 160, 230));
const Texture textureGrass(L"Example/Grass.jpg", TextureDesc::For3D);
Graphics3D::SetAmbientLightForward(ColorF(0.4, 0.4, 0.4));
Graphics3D::SetBlendStateForward(BlendState::Additive);
while (System::Update())
{
Graphics3D::FreeCamera();
Plane(40).draw(textureGrass);
for (int32 i = 0; i < 12; ++i)
{
const Vec2 v = Circular(8, Radians(i * 30));
Cylinder(Vec3(v.x, 2, v.y), 1, 4).drawForward(HSV(i * 30));
}
}
}
# include <Siv3D.hpp>
void Main()
{
Graphics::SetBackground(Color(80, 160, 230));
const Texture textureGrass(L"Example/Grass.jpg", TextureDesc::For3D);
GUI gui(GUIStyle::Default);
gui.add(L"method", GUIRadioButton::Create(
{ L"SolidCullBack (Default3D)", L"SolidCullFront", L"SolidCullNone",
L"WireframeCullBack", L"WireframeCullFront", L"WireframeCullNone" }, 0u));
while (System::Update())
{
Graphics3D::FreeCamera();
switch (gui.radioButton(L"method").checkedItem.value())
{
case 0:
Graphics3D::SetRasterizerState(RasterizerState::SolidCullBack);
break;
case 1:
Graphics3D::SetRasterizerState(RasterizerState::SolidCullFront);
break;
case 2:
Graphics3D::SetRasterizerState(RasterizerState::SolidCullNone);
break;
case 3:
Graphics3D::SetRasterizerState(RasterizerState::WireframeCullBack);
break;
case 4:
Graphics3D::SetRasterizerState(RasterizerState::WireframeCullFront);
break;
case 5:
Graphics3D::SetRasterizerState(RasterizerState::WireframeCullNone);
break;
}
Plane(40).draw(textureGrass);
for (int32 i = 0; i < 12; ++i)
{
const Vec2 v = Circular(8, Radians(i * 30));
Cylinder(Vec3(v.x, 2, v.y), 1, 4).draw(HSV(i * 30));
}
}
}
# include <Siv3D.hpp>
void Main()
{
Graphics::SetBackground(Color(80, 160, 230));
const Texture textureGrass(L"Example/Grass.jpg", TextureDesc::For3D);
GUI gui(GUIStyle::Default);
gui.add(L"method", GUIRadioButton::Create(
{ L"TestWrite (Default3D)", L"TestOnly", L"None" }, 0u));
while (System::Update())
{
Graphics3D::FreeCamera();
switch (gui.radioButton(L"method").checkedItem.value())
{
case 0:
Graphics3D::SetDepthStateForward(DepthState::Default3D);
break;
case 1:
Graphics3D::SetDepthStateForward(DepthState::TestOnly);
break;
case 2:
Graphics3D::SetDepthStateForward(DepthState::None);
break;
}
Plane(40).draw(textureGrass);
Sphere(Vec3(0, 2, 0), 2).draw();
for (int32 i = 0; i < 12; ++i)
{
const Vec2 v = Circular(8, Radians(i * 30));
Cylinder(Vec3(v.x, 2, v.y), 1, 4).drawForward(HSV(i * 30).toColorF(0.5));
}
}
}
3D 描画のデフォルトは WrapAniso
です。
# include <Siv3D.hpp>
void Main()
{
Graphics::SetBackground(Color(80, 160, 230));
const Texture textureGrass(L"Example/Grass.jpg", TextureDesc::For3D);
GUI gui(GUIStyle::Default);
gui.add(L"method", GUIRadioButton::Create(
{ L"Point", L"Linear", L"Aniso (Default3D)" }, 2u));
while (System::Update())
{
Graphics3D::FreeCamera();
Plane(40).draw(textureGrass);
switch (gui.radioButton(L"method").checkedItem.value())
{
case 0:
Graphics3D::SetSamplerState(SamplerState::WrapPoint);
break;
case 1:
Graphics3D::SetSamplerState(SamplerState::WrapLinear);
break;
case 2:
Graphics3D::SetSamplerState(SamplerState::WrapAniso);
break;
}
}
}
# include <Siv3D.hpp>
void Main()
{
Graphics::SetBackground(Color(80, 160, 230));
const Texture textureGrass(L"Example/Grass.jpg", TextureDesc::For3D);
RasterizerState rasterizer = RasterizerState::Default3D;
rasterizer.scissorEnable = true;
Graphics3D::SetRasterizerState(rasterizer);
Graphics3D::SetScissorRect(Rect(100, 100, 300, 200));
while (System::Update())
{
Graphics3D::FreeCamera();
Plane(40).draw(textureGrass);
for (int32 i = 0; i < 12; ++i)
{
const Vec2 v = Circular(8, Radians(i * 30));
Cylinder(Vec3(v.x, 2, v.y), 1, 4).draw(HSV(i * 30));
}
}
}
- 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