OpenSiv3D
OpenSiv3D copied to clipboard
C++20 framework for creative coding 🎮🎨🎹 / Cross-platform support (Windows, macOS, Linux, and the Web)
参照型に対する NamedParameter は使い方が明確でなく、ユースケースも少ない割に誤って書きやすいので廃止を検討するべきと思われる。
It's possible to have an animated `PNG` writer function?
reported by https://twitter.com/eiya5498513/status/1141602427046465536
Macにおいて生成したアプリケーションを/Applicationsにおくとlogのhtmlファイルも/Applicationsに置かれてしまいます。 代替案としてはとりあえず以下のものを考えました。 - ユーザが関数あるいは設定ファイルにて指定できる - ~/Library/Logsへの設置 後者に関しては常に~/Library/Logsでも使い勝手が悪いのでReleaseビルドの時のみ~/Library/Logsにして、Debugの時は./にするなどでも良いと思います。
https://github.com/wynd2608/OpenSiv3D/commit/7bf2a1239664f980766608a3e7cf46c606b92513 クリップボードのテキスト操作は実装済であるが、それ以外のデータを扱う機能が未実装。
クリップボードの文字列をTextBoxの書き込み位置にコピーできるようにしたいのですが TextBox内のカーソル位置(書き込み位置)を取得することはできますか?
```cpp std::array CreateTriangleFlag(double poleHeight, double poleWidth, double flagHeight, double flagWidth, const Vec2& pos) { const float poleHeightF = static_cast(poleHeight); const float poleHalfWidthF = static_cast(poleWidth)*0.5f; const float flagHeightF = static_cast(flagHeight); const...