Examples of Vector4fTypeHandler


Examples of org.terasology.persistence.typeHandling.mathTypes.Vector4fTypeHandler

        serializationLibrary.add(Material.class, new AssetTypeHandler<>(AssetType.MATERIAL, Material.class));
        serializationLibrary.add(SkeletalMesh.class, new AssetTypeHandler<>(AssetType.SKELETON_MESH, SkeletalMesh.class));
        serializationLibrary.add(MeshAnimation.class, new AssetTypeHandler<>(AssetType.ANIMATION, MeshAnimation.class));
        serializationLibrary.add(TextureRegion.class, new TextureRegionTypeHandler());
        serializationLibrary.add(TextureRegionAsset.class, new TextureRegionTypeHandler());
        serializationLibrary.add(Vector4f.class, new Vector4fTypeHandler());
        serializationLibrary.add(Vector3f.class, new Vector3fTypeHandler());
        serializationLibrary.add(Vector2f.class, new Vector2fTypeHandler());
        serializationLibrary.add(Vector3i.class, new Vector3iTypeHandler());
        serializationLibrary.add(CollisionGroup.class, new CollisionGroupTypeHandler());
        serializationLibrary.add(Region3i.class, new Region3iTypeHandler());
View Full Code Here

Examples of org.terasology.persistence.typeHandling.mathTypes.Vector4fTypeHandler

        library.add(StreamingSound.class, new AssetTypeHandler<>(AssetType.MUSIC, StreamingSound.class));
        library.add(Material.class, new AssetTypeHandler<>(AssetType.MATERIAL, Material.class));
        library.add(SkeletalMesh.class, new AssetTypeHandler<>(AssetType.SKELETON_MESH, SkeletalMesh.class));
        library.add(MeshAnimation.class, new AssetTypeHandler<>(AssetType.ANIMATION, MeshAnimation.class));
        library.add(UISkin.class, new AssetTypeHandler<>(AssetType.UI_SKIN, UISkin.class));
        library.add(Vector4f.class, new Vector4fTypeHandler());
        library.add(Vector3f.class, new Vector3fTypeHandler());
        library.add(Vector2f.class, new Vector2fTypeHandler());
        library.add(Vector3i.class, new Vector3iTypeHandler());
        library.add(Vector2i.class, new Vector2iTypeHandler());
        library.add(Rect2i.class, new Rect2iTypeHandler());
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.