Skip to content

Commit

Permalink
Update EntityAnno
Browse files Browse the repository at this point in the history
  • Loading branch information
GlennFolker committed Apr 15, 2024
1 parent 03a55d7 commit 898ae64
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
projectVersion = v146.0.0
entVersion = v146.0.5
entVersion = v146.0.6
arcVersion = v146
javapoetVersion = 1.13.0

Expand Down
2 changes: 1 addition & 1 deletion src/gltfrenzy/io/LEDataInputStream.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

/**
* A little-endian {@link DataInputStream}.
* @author GlennFolker
* @author GlFolker
*/
public class LEDataInputStream extends InputStream implements DataInput{
private final byte[] buffer = new byte[8];
Expand Down
2 changes: 1 addition & 1 deletion src/gltfrenzy/loader/GlbReader.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

/**
* Reader implementation for {@code .glb} monolithic binary file.
* @author GlennFolker
* @author GlFolker
*/
public class GlbReader implements Scenes3DReader{
@Override
Expand Down
2 changes: 1 addition & 1 deletion src/gltfrenzy/loader/GltfReader.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

/**
* Reader implementation for {@code .gltf} textual file.
* @author GlennFolker
* @author GlFolker
*/
public class GltfReader implements Scenes3DReader{
@Override
Expand Down
2 changes: 1 addition & 1 deletion src/gltfrenzy/loader/MeshSetLoader.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

/**
* Convenience loader to automatically fetch a mesh by-name from a {@link Scenes3D}.
* @author GlennFolker
* @author GlFolker
*/
public class MeshSetLoader extends SynchronousAssetLoader<MeshSet, MeshSetParameter>{
public MeshSetLoader(FileHandleResolver resolver){
Expand Down
2 changes: 1 addition & 1 deletion src/gltfrenzy/loader/NodeLoader.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

/**
* Convenience loader to automatically fetch a mesh by-name from a {@link Scenes3D}.
* @author GlennFolker
* @author GlFolker
*/
public class NodeLoader extends SynchronousAssetLoader<Node, NodeParameter>{
public NodeLoader(FileHandleResolver resolver){
Expand Down
2 changes: 1 addition & 1 deletion src/gltfrenzy/loader/Scenes3DLoader.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

/**
* Asynchronous asset loader implementation to load {@link Scenes3D} assets from either {@code .gltf} or {@code .glb} files.
* @author GlennFolker
* @author GlFolker
*/
public class Scenes3DLoader extends AsynchronousAssetLoader<Scenes3D, Scenes3DParameter> implements FileHandleResolver{
protected final Scenes3DReader reader;
Expand Down
2 changes: 1 addition & 1 deletion src/gltfrenzy/loader/Scenes3DReader.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

/**
* glTF asset reader abstraction.
* @author GlennFolker
* @author GlFolker
*/
public interface Scenes3DReader{
Scenes3DData read(Fi file) throws IOException;
Expand Down
2 changes: 1 addition & 1 deletion src/gltfrenzy/model/Node.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

/**
* Defines an object node in the hierarchy tree. Children of this node inherits its transform.
* @author GlennFolker
* @author GlFolker
*/
public class Node{
private static final Mat3D mat = new Mat3D();
Expand Down
2 changes: 1 addition & 1 deletion src/gltfrenzy/model/Scenes3D.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

/**
* A <a href=https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html>glTF 2.0</a> scene implementation.
* @author GlennFolker
* @author GlFolker
*/
public class Scenes3D implements Disposable{
public final Seq<MeshSet> meshes = new Seq<>();
Expand Down

0 comments on commit 898ae64

Please sign in to comment.