vyv03354
vyv03354
``` std::basic_ofstream file( name ) ``` `basic_ofstream`の型パラメーターはファイル名と関係ないので、型パラメーターに`path::value_type`を渡すのはおかしくないですか? C++17で型パラメーターとは無関係に`const path&`と`const path::value_type*`を引数に取るオーバーロードが追加されたので、普通に ``` std::ofstream file( path ) ``` か ``` std::ofstream file( name ) ``` と書けばいいと思っていたのですが、何か勘違いしているでしょうか。
I want to define both `KHR_techniques_webgl` and `KHR_materials_unlit` and expect that: 1. If the client supports `KHR_techniques_webgl`, use the custom shaders. 2. Otherwise, fallback to `KHR_materials_unlit` But currently it will...
Sketchfabからダウンロードしたモデルは、`asset.extras`に以下のようなメタ情報が自動的に付加されます。 ``` "asset": { "extras": { "author": "DWANGO Co., Ltd. (http://3d.nicovideo.jp/alicia/)", "license": "Other (http://3d.nicovideo.jp/alicia/rule.html)", "source": "http://3d.nicovideo.jp/works/td14712", "title": "Alicia Solid" } }, ``` Sketchfab以外のglTFビューアーもこの情報に対応している場合があります。たとえば、[three glTF Viewer](https://gltf-viewer.donmccurdy.com/)はこの情報が存在する場合、作者名などを画面に表示します。 参考までに、VRMのメタ情報との対応は以下のようになります。 asset.extrasextensions.VRM.meta authorauthor contactInformation licenselicenseName...
Steps to reproduce: Compare empty and non-empty folders Actual result: Shows "1970/01/01 9:00:00" in the date field.  Expected result: Date field should be empty. I guess this is a...
### 🔎 Search Terms String.prototype.apply I found #33173, but the issue was closed without a reason. The problem still persists. ### 🕗 Version & Regression Information At least since v3.3.3...