Skip to content

Commit

Permalink
docs: fix some broken Python examples
Browse files Browse the repository at this point in the history
  • Loading branch information
lmichaelis committed Sep 20, 2024
1 parent 6664fc3 commit 313135f
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/library/api/model-hierarchy.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,3 +91,4 @@
vfs = Vfs()
vfs.mount_disk("Anims.vdf", clobber=VfsOverwriteBehavior.OLDER)
mdh = ModelHierarchy.load(vfs.find("MySkeleton.MDH"))
```
1 change: 1 addition & 0 deletions docs/library/api/model-mesh.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,3 +91,4 @@
vfs = Vfs()
vfs.mount_disk("Anims.vdf", clobber=VfsOverwriteBehavior.OLDER)
mesh = ModelMesh.load(vfs.find("MyMesh.MDM"))
```
1 change: 1 addition & 0 deletions docs/library/api/morph-mesh.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,3 +91,4 @@
vfs = Vfs()
vfs.mount_disk("Anims.vdf", clobber=VfsOverwriteBehavior.OLDER)
mmb = MorphMesh.load(vfs.find("MyMesh.MMB"))
```
1 change: 1 addition & 0 deletions docs/library/api/multi-resolution-mesh.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,3 +91,4 @@
vfs = Vfs()
vfs.mount_disk("Meshes.vdf", clobber=VfsOverwriteBehavior.OLDER)
mrm = MultiResolutionMesh.load(vfs.find("MyMesh.MRM"))
```
1 change: 1 addition & 0 deletions docs/library/api/texture.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,3 +91,4 @@
vfs = Vfs()
vfs.mount_disk("Textures.vdf", clobber=VfsOverwriteBehavior.OLDER)
tex = Texture.load(vfs.find("MyTexture.TEX"))
```
1 change: 1 addition & 0 deletions docs/library/api/virtual-file-system.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ by a now defunct company called [TRIACOM Software][].
rd = node.open()

# ...
```


[ZIP]: https://en.wikipedia.org/wiki/ZIP_(file_format)
Expand Down
1 change: 1 addition & 0 deletions docs/library/api/world.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,3 +91,4 @@
vfs = Vfs()
vfs.mount_disk("Worlds.vdf", clobber=VfsOverwriteBehavior.OLDER)
world = World.load(vfs.find("OLDWORLD.ZEN"))
```

0 comments on commit 313135f

Please sign in to comment.