sphinx エラー修正

This commit is contained in:
ousttrue 2021-10-25 14:48:24 +09:00
parent c1fb68fb29
commit 22d79dd27e
6 changed files with 5 additions and 5 deletions

View File

@ -22,7 +22,7 @@ VRM0.x向けのFastSpringBone実装は `VRM/Runtime/FastSpringBone` ディレク
これを明示的に呼ばなければ、従来のSpringBoneのまま動作します。
```cs
```csharp
using (var loader = new UniGLTF.ImporterContext(data))
{
var instance = await loader.LoadAsync();

View File

@ -18,7 +18,7 @@
`ScriptedImporter` を継承したクラスの `public member``[SerializeField]` に情報を保存できます。
```cs
```csharp
// 例
[ScriptedImporter(1, "cube")]
public class CubeImporter : ScriptedImporter

View File

@ -33,7 +33,7 @@ v*
## UPM(v0.81~)
```json
```js
// manifest.json 抜粋
{
"dependencies": {

View File

@ -2,7 +2,7 @@
## awaitCaller 引き数
```cs
```csharp
public virtual async Task<RuntimeGltfInstance> LoadAsync(IAwaitCaller awaitCaller = null, ...)
```

View File

@ -6,5 +6,5 @@ Runtime ローダーのサンプルです。
:language: csharp
:linenos:
:caption:
:emphasize-lines" 434-485
:lines: 434-485
```