Skip to content

Commit

Permalink
Hide binary chunk specs from docs
Browse files Browse the repository at this point in the history
  • Loading branch information
ScrimpyCat committed Jul 18, 2020
1 parent ab6fe03 commit 3a637c6
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 0 deletions.
1 change: 1 addition & 0 deletions lib/vox/format/vox/binary/chunk.ex
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
defmodule Vox.Format.VOX.Binary.Chunk do
@moduledoc false
use Tonic, optimize: true

string :id, length: 4
Expand Down
1 change: 1 addition & 0 deletions lib/vox/format/vox/binary/chunk/deprecated/material.ex
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
defmodule Vox.Format.VOX.Binary.Chunk.Deprecated.Material do
@moduledoc false
use Tonic, optimize: true

int32 :id
Expand Down
1 change: 1 addition & 0 deletions lib/vox/format/vox/binary/chunk/layer.ex
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
defmodule Vox.Format.VOX.Binary.Chunk.Layer do
@moduledoc false
use Tonic, optimize: true
import Vox.Format.VOX.Binary.Type

Expand Down
1 change: 1 addition & 0 deletions lib/vox/format/vox/binary/chunk/main.ex
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
defmodule Vox.Format.VOX.Binary.Chunk.Main do
@moduledoc false
use Tonic, optimize: true

empty!()
Expand Down
1 change: 1 addition & 0 deletions lib/vox/format/vox/binary/chunk/material.ex
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
defmodule Vox.Format.VOX.Binary.Chunk.Material do
@moduledoc false
use Tonic, optimize: true
import Vox.Format.VOX.Binary.Type

Expand Down
1 change: 1 addition & 0 deletions lib/vox/format/vox/binary/chunk/node/group.ex
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
defmodule Vox.Format.VOX.Binary.Chunk.Node.Group do
@moduledoc false
use Tonic, optimize: true
import Vox.Format.VOX.Binary.Type

Expand Down
1 change: 1 addition & 0 deletions lib/vox/format/vox/binary/chunk/node/shape.ex
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
defmodule Vox.Format.VOX.Binary.Chunk.Node.Shape do
@moduledoc false
use Tonic, optimize: true
import Vox.Format.VOX.Binary.Type

Expand Down
1 change: 1 addition & 0 deletions lib/vox/format/vox/binary/chunk/node/transform.ex
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
defmodule Vox.Format.VOX.Binary.Chunk.Node.Transform do
@moduledoc false
use Tonic, optimize: true
import Vox.Format.VOX.Binary.Type

Expand Down
1 change: 1 addition & 0 deletions lib/vox/format/vox/binary/chunk/pack.ex
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
defmodule Vox.Format.VOX.Binary.Chunk.Pack do
@moduledoc false
use Tonic, optimize: true

uint32 :model_count
Expand Down
1 change: 1 addition & 0 deletions lib/vox/format/vox/binary/chunk/rgba.ex
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
defmodule Vox.Format.VOX.Binary.Chunk.RGBA do
@moduledoc false
use Tonic, optimize: true

repeat :palette, 256 do
Expand Down
1 change: 1 addition & 0 deletions lib/vox/format/vox/binary/chunk/robj.ex
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
defmodule Vox.Format.VOX.Binary.Chunk.RObj do
@moduledoc false
use Tonic, optimize: true
import Vox.Format.VOX.Binary.Type

Expand Down
1 change: 1 addition & 0 deletions lib/vox/format/vox/binary/chunk/size.ex
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
defmodule Vox.Format.VOX.Binary.Chunk.Size do
@moduledoc false
use Tonic, optimize: true

uint32 :width
Expand Down
1 change: 1 addition & 0 deletions lib/vox/format/vox/binary/chunk/xyzi.ex
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
defmodule Vox.Format.VOX.Binary.Chunk.XYZI do
@moduledoc false
use Tonic, optimize: true

uint32 :voxel_count
Expand Down
1 change: 1 addition & 0 deletions lib/vox/format/vox/binary/type.ex
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
defmodule Vox.Format.VOX.Binary.Type do
@moduledoc false
import Tonic

type :nstring, fn data, name, endianness ->
Expand Down

0 comments on commit 3a637c6

Please sign in to comment.