Skip to content

3Dテキスト

Reputeless edited this page Mar 14, 2017 · 3 revisions
3Dテキスト
# include <Siv3D.hpp>

Image CreateTextImage(const Font& font, const String& str)
{
    Image image(font.region(str).size, Color(255, 0));

    font.overwrite(image, str, { 0, 0 }, Palette::White);

    return image;
}

void DrawTextParticle(const Texture& texture, const Vec3& pos, double scale, const ColorF& color)
{
    const double scaleY = scale;
    const double scaleX = scaleY * (1.0 * texture.width / texture.height);

    Particle particle(pos, { scaleX, scaleY }, color);

    Graphics3D::DrawParticlesForward({ particle }, texture);
}

void Main()
{
    const Font font(48, Typeface::Heavy);
    const Texture textureEarth(L"Example/Earth.jpg", TextureDesc::For3D);
    const Texture textureParticle(L"Example/Particle.png", TextureDesc::For3D);
    const Texture textureTokyo(CreateTextImage(font, L"Tokyo"), TextureDesc::For3D);
    const Texture textureNewYork(CreateTextImage(font, L"New York"), TextureDesc::For3D);
    const Texture textureLondon(CreateTextImage(font, L"London"), TextureDesc::For3D);

    Graphics3D::SetSamplerStateForward(SamplerState::ClampAniso);
    Graphics3D::SetBlendStateForward(BlendState::Additive);
    Graphics3D::SetDepthStateForward(DepthState::None);

    while (System::Update())
    {
        Graphics3D::FreeCamera();

        DrawTextParticle(textureTokyo, { 31, 2, 8 }, 4.0, ColorF(1.0, 0.0, 1.0));

        DrawTextParticle(textureNewYork, { -16, 2, 9 }, 4.0, ColorF(1.0, 1.0, 0.0));

        DrawTextParticle(textureLondon, { 0, 2, 11.5 }, 4.0, ColorF(0.0, 1.0, 1.0));

        Array<Particle> particles;

        particles.emplace_back(Vec3(31, 0, 8), 2.0, ColorF(1.0, 0.0, 1.0));

        particles.emplace_back(Vec3(-16, 0, 9), 2.0, ColorF(1.0, 1.0, 0.0));

        particles.emplace_back(Vec3(0, 0, 11.5), 2.0, ColorF(0.0, 1.0, 1.0));

        Graphics3D::DrawParticlesForward(particles, textureParticle);

        Plane(80, 40).draw(textureEarth);
    }
}

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