透明な画像への書き込み
ヴート 2023/05/13(Sat) 09:12
Reputeless 2023/05/13(Sat) 15:33
次のようなブレンドステートを設定すると良いです。
```cpp
# include <Siv3D.hpp> // OpenSiv3D v0.6.9
void Main()
{
Scene::SetBackground(ColorF{ 0.11 });
const Texture emoji{ ..._emoji };
RenderTexture renderTexture{ Size{ 512, 512 } };
while (System::Update())
{
{
const ScopedRenderTarget2D rt{ renderTexture.clear(ColorF{ 0.0, 0.0 }) };
const BlendState bs{ true, Blend::One, Blend::Zero, BlendOp::Add, Blend::One, Blend::Zero, BlendOp::Max };
const ScopedRenderStates2D blend{ bs };
emoji.drawAt(256, 256);
RectF{ 50, 300 - Periodic::Jump0_1(2s) * 100, 50 }.draw(ColorF{ 1.0, 0.5 });
}
for (int32 y = 0; y < 30; ++y)
{
for (int32 x = 0; x < 40; ++x)
{
if (IsEven(y + x))
{
Rect{ (x * 20), y * 20, 20 }.draw(ColorF{ 0.15 });
}
}
}
renderTexture.drawAt(Cursor::Pos()).drawFrame(2, 0);
}
}
```