├── LICENSE.md ├── README.md ├── creaturegodot ├── CreatureModule.cpp ├── CreatureModule.h ├── MeshBone.cpp ├── MeshBone.h ├── SCsub ├── config.py ├── creaturegodot.cpp ├── creaturegodot.h ├── gason.cpp ├── gason │ ├── gason.cpp │ └── gason.h ├── glm │ ├── CMakeLists.txt │ ├── common.hpp │ ├── detail │ │ ├── _features.hpp │ │ ├── _fixes.hpp │ │ ├── _literals.hpp │ │ ├── _noise.hpp │ │ ├── _swizzle.hpp │ │ ├── _swizzle_func.hpp │ │ ├── _vectorize.hpp │ │ ├── dummy.cpp │ │ ├── func_common.hpp │ │ ├── func_common.inl │ │ ├── func_exponential.hpp │ │ ├── func_exponential.inl │ │ ├── func_geometric.hpp │ │ ├── func_geometric.inl │ │ ├── func_integer.hpp │ │ ├── func_integer.inl │ │ ├── func_matrix.hpp │ │ ├── func_matrix.inl │ │ ├── func_noise.hpp │ │ ├── func_noise.inl │ │ ├── func_packing.hpp │ │ ├── func_packing.inl │ │ ├── func_trigonometric.hpp │ │ ├── func_trigonometric.inl │ │ ├── func_vector_relational.hpp │ │ ├── func_vector_relational.inl │ │ ├── glm.cpp │ │ ├── hint.hpp │ │ ├── intrinsic_common.hpp │ │ ├── intrinsic_common.inl │ │ ├── intrinsic_exponential.hpp │ │ ├── intrinsic_exponential.inl │ │ ├── intrinsic_geometric.hpp │ │ ├── intrinsic_geometric.inl │ │ ├── intrinsic_integer.hpp │ │ ├── intrinsic_integer.inl │ │ ├── intrinsic_matrix.hpp │ │ ├── intrinsic_matrix.inl │ │ ├── intrinsic_trigonometric.hpp │ │ ├── intrinsic_trigonometric.inl │ │ ├── intrinsic_vector_relational.hpp │ │ ├── intrinsic_vector_relational.inl │ │ ├── precision.hpp │ │ ├── precision.inl │ │ ├── setup.hpp │ │ ├── type_float.hpp │ │ ├── type_gentype.hpp │ │ ├── type_gentype.inl │ │ ├── type_half.hpp │ │ ├── type_half.inl │ │ ├── type_int.hpp │ │ ├── type_mat.hpp │ │ ├── type_mat.inl │ │ ├── type_mat2x2.hpp │ │ ├── type_mat2x2.inl │ │ ├── type_mat2x3.hpp │ │ ├── type_mat2x3.inl │ │ ├── type_mat2x4.hpp │ │ ├── type_mat2x4.inl │ │ ├── type_mat3x2.hpp │ │ ├── type_mat3x2.inl │ │ ├── type_mat3x3.hpp │ │ ├── type_mat3x3.inl │ │ ├── type_mat3x4.hpp │ │ ├── type_mat3x4.inl │ │ ├── type_mat4x2.hpp │ │ ├── type_mat4x2.inl │ │ ├── type_mat4x3.hpp │ │ ├── type_mat4x3.inl │ │ ├── type_mat4x4.hpp │ │ ├── type_mat4x4.inl │ │ ├── type_vec.hpp │ │ ├── type_vec.inl │ │ ├── type_vec1.hpp │ │ ├── type_vec1.inl │ │ ├── type_vec2.hpp │ │ ├── type_vec2.inl │ │ ├── type_vec3.hpp │ │ ├── type_vec3.inl │ │ ├── type_vec4.hpp │ │ └── type_vec4.inl │ ├── exponential.hpp │ ├── ext.hpp │ ├── fwd.hpp │ ├── geometric.hpp │ ├── glm.hpp │ ├── gtc │ │ ├── constants.hpp │ │ ├── constants.inl │ │ ├── epsilon.hpp │ │ ├── epsilon.inl │ │ ├── matrix_access.hpp │ │ ├── matrix_access.inl │ │ ├── matrix_integer.hpp │ │ ├── matrix_inverse.hpp │ │ ├── matrix_inverse.inl │ │ ├── matrix_transform.hpp │ │ ├── matrix_transform.inl │ │ ├── noise.hpp │ │ ├── noise.inl │ │ ├── packing.hpp │ │ ├── packing.inl │ │ ├── quaternion.hpp │ │ ├── quaternion.inl │ │ ├── random.hpp │ │ ├── random.inl │ │ ├── reciprocal.hpp │ │ ├── reciprocal.inl │ │ ├── type_precision.hpp │ │ ├── type_precision.inl │ │ ├── type_ptr.hpp │ │ ├── type_ptr.inl │ │ ├── ulp.hpp │ │ └── ulp.inl │ ├── gtx │ │ ├── associated_min_max.hpp │ │ ├── associated_min_max.inl │ │ ├── bit.hpp │ │ ├── bit.inl │ │ ├── closest_point.hpp │ │ ├── closest_point.inl │ │ ├── color_space.hpp │ │ ├── color_space.inl │ │ ├── color_space_YCoCg.hpp │ │ ├── color_space_YCoCg.inl │ │ ├── compatibility.hpp │ │ ├── compatibility.inl │ │ ├── component_wise.hpp │ │ ├── component_wise.inl │ │ ├── constants.hpp │ │ ├── dual_quaternion.hpp │ │ ├── dual_quaternion.inl │ │ ├── epsilon.hpp │ │ ├── euler_angles.hpp │ │ ├── euler_angles.inl │ │ ├── extend.hpp │ │ ├── extend.inl │ │ ├── extented_min_max.hpp │ │ ├── extented_min_max.inl │ │ ├── fast_exponential.hpp │ │ ├── fast_exponential.inl │ │ ├── fast_square_root.hpp │ │ ├── fast_square_root.inl │ │ ├── fast_trigonometry.hpp │ │ ├── fast_trigonometry.inl │ │ ├── gradient_paint.hpp │ │ ├── gradient_paint.inl │ │ ├── handed_coordinate_space.hpp │ │ ├── handed_coordinate_space.inl │ │ ├── inertia.hpp │ │ ├── inertia.inl │ │ ├── int_10_10_10_2.hpp │ │ ├── int_10_10_10_2.inl │ │ ├── integer.hpp │ │ ├── integer.inl │ │ ├── intersect.hpp │ │ ├── intersect.inl │ │ ├── io.hpp │ │ ├── io.inl │ │ ├── log_base.hpp │ │ ├── log_base.inl │ │ ├── matrix_cross_product.hpp │ │ ├── matrix_cross_product.inl │ │ ├── matrix_interpolation.hpp │ │ ├── matrix_interpolation.inl │ │ ├── matrix_major_storage.hpp │ │ ├── matrix_major_storage.inl │ │ ├── matrix_operation.hpp │ │ ├── matrix_operation.inl │ │ ├── matrix_query.hpp │ │ ├── matrix_query.inl │ │ ├── matrix_transform_2d.hpp │ │ ├── matrix_transform_2d.inl │ │ ├── mixed_product.hpp │ │ ├── mixed_product.inl │ │ ├── multiple.hpp │ │ ├── multiple.inl │ │ ├── noise.hpp │ │ ├── norm.hpp │ │ ├── norm.inl │ │ ├── normal.hpp │ │ ├── normal.inl │ │ ├── normalize_dot.hpp │ │ ├── normalize_dot.inl │ │ ├── number_precision.hpp │ │ ├── number_precision.inl │ │ ├── optimum_pow.hpp │ │ ├── optimum_pow.inl │ │ ├── orthonormalize.hpp │ │ ├── orthonormalize.inl │ │ ├── perpendicular.hpp │ │ ├── perpendicular.inl │ │ ├── polar_coordinates.hpp │ │ ├── polar_coordinates.inl │ │ ├── projection.hpp │ │ ├── projection.inl │ │ ├── quaternion.hpp │ │ ├── quaternion.inl │ │ ├── random.hpp │ │ ├── raw_data.hpp │ │ ├── raw_data.inl │ │ ├── reciprocal.hpp │ │ ├── rotate_normalized_axis.hpp │ │ ├── rotate_normalized_axis.inl │ │ ├── rotate_vector.hpp │ │ ├── rotate_vector.inl │ │ ├── scalar_relational.hpp │ │ ├── scalar_relational.inl │ │ ├── simd_mat4.hpp │ │ ├── simd_mat4.inl │ │ ├── simd_quat.hpp │ │ ├── simd_quat.inl │ │ ├── simd_vec4.hpp │ │ ├── simd_vec4.inl │ │ ├── spline.hpp │ │ ├── spline.inl │ │ ├── std_based_type.hpp │ │ ├── std_based_type.inl │ │ ├── string_cast.hpp │ │ ├── string_cast.inl │ │ ├── transform.hpp │ │ ├── transform.inl │ │ ├── transform2.hpp │ │ ├── transform2.inl │ │ ├── ulp.hpp │ │ ├── unsigned_int.hpp │ │ ├── unsigned_int.inl │ │ ├── vec1.hpp │ │ ├── vec1.inl │ │ ├── vector_angle.hpp │ │ ├── vector_angle.inl │ │ ├── vector_query.hpp │ │ ├── vector_query.inl │ │ ├── wrap.hpp │ │ └── wrap.inl │ ├── integer.hpp │ ├── mat2x2.hpp │ ├── mat2x3.hpp │ ├── mat2x4.hpp │ ├── mat3x2.hpp │ ├── mat3x3.hpp │ ├── mat3x4.hpp │ ├── mat4x2.hpp │ ├── mat4x3.hpp │ ├── mat4x4.hpp │ ├── matrix.hpp │ ├── packing.hpp │ ├── trigonometric.hpp │ ├── vec2.hpp │ ├── vec3.hpp │ ├── vec4.hpp │ ├── vector_relational.hpp │ └── virtrev │ │ └── xstream.hpp ├── miniz.h ├── register_types.cpp └── register_types.h ├── creaturegodot3 ├── Godot3Demo │ ├── CreatureGodot.gd │ ├── CreatureGodot.tscn │ ├── CreatureGodotDefault.gd │ ├── CreatureGodotHorse.vs │ ├── CreatureGodotSkinSwap.gd │ ├── Roboto-Regular.ttf │ ├── bat.json │ ├── bat.png │ ├── bat.png.import │ ├── default_env.tres │ ├── export_presets.cfg │ ├── fox.json │ ├── fox.png │ ├── fox.png.import │ ├── horseman.json │ ├── horseman.png │ ├── horseman.png.import │ ├── icon.png │ ├── icon.png.import │ ├── morphTest.gd │ ├── morphTest.tscn │ ├── owlMorph_character_data.json │ ├── owlMorph_character_img.png │ ├── owlMorph_character_img.png.import │ ├── owlMorph_character_meta.mdata │ ├── project.godot │ ├── robotoFont.tres │ ├── robotoFont2.tres │ ├── swapGirl.json │ ├── swapGirl.mdata │ ├── swapGirl.png │ ├── swapGirl.png.import │ ├── test.gd │ ├── test.tscn │ ├── title.png │ └── title.png.import └── creaturegodot │ ├── CreatureMetaData.cpp │ ├── CreatureMetaData.h │ ├── CreatureModule.cpp │ ├── CreatureModule.h │ ├── MeshBone.cpp │ ├── MeshBone.h │ ├── SCsub │ ├── config.py │ ├── creaturegodot.cpp │ ├── creaturegodot.h │ ├── gason │ ├── gason.cpp │ └── gason.h │ ├── glm │ ├── CMakeLists.txt │ ├── common.hpp │ ├── detail │ │ ├── _features.hpp │ │ ├── _fixes.hpp │ │ ├── _noise.hpp │ │ ├── _swizzle.hpp │ │ ├── _swizzle_func.hpp │ │ ├── _vectorize.hpp │ │ ├── compute_common.hpp │ │ ├── compute_vector_relational.hpp │ │ ├── func_common.inl │ │ ├── func_common_simd.inl │ │ ├── func_exponential.inl │ │ ├── func_exponential_simd.inl │ │ ├── func_geometric.inl │ │ ├── func_geometric_simd.inl │ │ ├── func_integer.inl │ │ ├── func_integer_simd.inl │ │ ├── func_matrix.inl │ │ ├── func_matrix_simd.inl │ │ ├── func_packing.inl │ │ ├── func_packing_simd.inl │ │ ├── func_trigonometric.inl │ │ ├── func_trigonometric_simd.inl │ │ ├── func_vector_relational.inl │ │ ├── func_vector_relational_simd.inl │ │ ├── glm.cpp │ │ ├── qualifier.hpp │ │ ├── setup.hpp │ │ ├── type_float.hpp │ │ ├── type_half.hpp │ │ ├── type_half.inl │ │ ├── type_mat2x2.hpp │ │ ├── type_mat2x2.inl │ │ ├── type_mat2x3.hpp │ │ ├── type_mat2x3.inl │ │ ├── type_mat2x4.hpp │ │ ├── type_mat2x4.inl │ │ ├── type_mat3x2.hpp │ │ ├── type_mat3x2.inl │ │ ├── type_mat3x3.hpp │ │ ├── type_mat3x3.inl │ │ ├── type_mat3x4.hpp │ │ ├── type_mat3x4.inl │ │ ├── type_mat4x2.hpp │ │ ├── type_mat4x2.inl │ │ ├── type_mat4x3.hpp │ │ ├── type_mat4x3.inl │ │ ├── type_mat4x4.hpp │ │ ├── type_mat4x4.inl │ │ ├── type_mat4x4_simd.inl │ │ ├── type_quat.hpp │ │ ├── type_quat.inl │ │ ├── type_quat_simd.inl │ │ ├── type_vec1.hpp │ │ ├── type_vec1.inl │ │ ├── type_vec2.hpp │ │ ├── type_vec2.inl │ │ ├── type_vec3.hpp │ │ ├── type_vec3.inl │ │ ├── type_vec4.hpp │ │ ├── type_vec4.inl │ │ └── type_vec4_simd.inl │ ├── exponential.hpp │ ├── ext.hpp │ ├── ext │ │ ├── matrix_clip_space.hpp │ │ ├── matrix_clip_space.inl │ │ ├── matrix_common.hpp │ │ ├── matrix_common.inl │ │ ├── matrix_double2x2.hpp │ │ ├── matrix_double2x2_precision.hpp │ │ ├── matrix_double2x3.hpp │ │ ├── matrix_double2x3_precision.hpp │ │ ├── matrix_double2x4.hpp │ │ ├── matrix_double2x4_precision.hpp │ │ ├── matrix_double3x2.hpp │ │ ├── matrix_double3x2_precision.hpp │ │ ├── matrix_double3x3.hpp │ │ ├── matrix_double3x3_precision.hpp │ │ ├── matrix_double3x4.hpp │ │ ├── matrix_double3x4_precision.hpp │ │ ├── matrix_double4x2.hpp │ │ ├── matrix_double4x2_precision.hpp │ │ ├── matrix_double4x3.hpp │ │ ├── matrix_double4x3_precision.hpp │ │ ├── matrix_double4x4.hpp │ │ ├── matrix_double4x4_precision.hpp │ │ ├── matrix_float2x2.hpp │ │ ├── matrix_float2x2_precision.hpp │ │ ├── matrix_float2x3.hpp │ │ ├── matrix_float2x3_precision.hpp │ │ ├── matrix_float2x4.hpp │ │ ├── matrix_float2x4_precision.hpp │ │ ├── matrix_float3x2.hpp │ │ ├── matrix_float3x2_precision.hpp │ │ ├── matrix_float3x3.hpp │ │ ├── matrix_float3x3_precision.hpp │ │ ├── matrix_float3x4.hpp │ │ ├── matrix_float3x4_precision.hpp │ │ ├── matrix_float4x2.hpp │ │ ├── matrix_float4x2_precision.hpp │ │ ├── matrix_float4x3.hpp │ │ ├── matrix_float4x3_precision.hpp │ │ ├── matrix_float4x4.hpp │ │ ├── matrix_float4x4_precision.hpp │ │ ├── matrix_projection.hpp │ │ ├── matrix_projection.inl │ │ ├── matrix_relational.hpp │ │ ├── matrix_relational.inl │ │ ├── matrix_transform.hpp │ │ ├── matrix_transform.inl │ │ ├── quaternion_common.hpp │ │ ├── quaternion_common.inl │ │ ├── quaternion_common_simd.inl │ │ ├── quaternion_double.hpp │ │ ├── quaternion_double_precision.hpp │ │ ├── quaternion_exponential.hpp │ │ ├── quaternion_exponential.inl │ │ ├── quaternion_float.hpp │ │ ├── quaternion_float_precision.hpp │ │ ├── quaternion_geometric.hpp │ │ ├── quaternion_geometric.inl │ │ ├── quaternion_relational.hpp │ │ ├── quaternion_relational.inl │ │ ├── quaternion_transform.hpp │ │ ├── quaternion_transform.inl │ │ ├── quaternion_trigonometric.hpp │ │ ├── quaternion_trigonometric.inl │ │ ├── scalar_common.hpp │ │ ├── scalar_common.inl │ │ ├── scalar_constants.hpp │ │ ├── scalar_constants.inl │ │ ├── scalar_int_sized.hpp │ │ ├── scalar_integer.hpp │ │ ├── scalar_integer.inl │ │ ├── scalar_relational.hpp │ │ ├── scalar_relational.inl │ │ ├── scalar_uint_sized.hpp │ │ ├── scalar_ulp.hpp │ │ ├── scalar_ulp.inl │ │ ├── vector_bool1.hpp │ │ ├── vector_bool1_precision.hpp │ │ ├── vector_bool2.hpp │ │ ├── vector_bool2_precision.hpp │ │ ├── vector_bool3.hpp │ │ ├── vector_bool3_precision.hpp │ │ ├── vector_bool4.hpp │ │ ├── vector_bool4_precision.hpp │ │ ├── vector_common.hpp │ │ ├── vector_common.inl │ │ ├── vector_double1.hpp │ │ ├── vector_double1_precision.hpp │ │ ├── vector_double2.hpp │ │ ├── vector_double2_precision.hpp │ │ ├── vector_double3.hpp │ │ ├── vector_double3_precision.hpp │ │ ├── vector_double4.hpp │ │ ├── vector_double4_precision.hpp │ │ ├── vector_float1.hpp │ │ ├── vector_float1_precision.hpp │ │ ├── vector_float2.hpp │ │ ├── vector_float2_precision.hpp │ │ ├── vector_float3.hpp │ │ ├── vector_float3_precision.hpp │ │ ├── vector_float4.hpp │ │ ├── vector_float4_precision.hpp │ │ ├── vector_int1.hpp │ │ ├── vector_int1_precision.hpp │ │ ├── vector_int2.hpp │ │ ├── vector_int2_precision.hpp │ │ ├── vector_int3.hpp │ │ ├── vector_int3_precision.hpp │ │ ├── vector_int4.hpp │ │ ├── vector_int4_precision.hpp │ │ ├── vector_integer.hpp │ │ ├── vector_integer.inl │ │ ├── vector_relational.hpp │ │ ├── vector_relational.inl │ │ ├── vector_uint1.hpp │ │ ├── vector_uint1_precision.hpp │ │ ├── vector_uint2.hpp │ │ ├── vector_uint2_precision.hpp │ │ ├── vector_uint3.hpp │ │ ├── vector_uint3_precision.hpp │ │ ├── vector_uint4.hpp │ │ ├── vector_uint4_precision.hpp │ │ ├── vector_ulp.hpp │ │ └── vector_ulp.inl │ ├── fwd.hpp │ ├── geometric.hpp │ ├── glm.hpp │ ├── gtc │ │ ├── bitfield.hpp │ │ ├── bitfield.inl │ │ ├── color_space.hpp │ │ ├── color_space.inl │ │ ├── constants.hpp │ │ ├── constants.inl │ │ ├── epsilon.hpp │ │ ├── epsilon.inl │ │ ├── integer.hpp │ │ ├── integer.inl │ │ ├── matrix_access.hpp │ │ ├── matrix_access.inl │ │ ├── matrix_integer.hpp │ │ ├── matrix_inverse.hpp │ │ ├── matrix_inverse.inl │ │ ├── matrix_transform.hpp │ │ ├── matrix_transform.inl │ │ ├── noise.hpp │ │ ├── noise.inl │ │ ├── packing.hpp │ │ ├── packing.inl │ │ ├── quaternion.hpp │ │ ├── quaternion.inl │ │ ├── quaternion_simd.inl │ │ ├── random.hpp │ │ ├── random.inl │ │ ├── reciprocal.hpp │ │ ├── reciprocal.inl │ │ ├── round.hpp │ │ ├── round.inl │ │ ├── type_aligned.hpp │ │ ├── type_precision.hpp │ │ ├── type_precision.inl │ │ ├── type_ptr.hpp │ │ ├── type_ptr.inl │ │ ├── ulp.hpp │ │ ├── ulp.inl │ │ └── vec1.hpp │ ├── gtx │ │ ├── associated_min_max.hpp │ │ ├── associated_min_max.inl │ │ ├── bit.hpp │ │ ├── bit.inl │ │ ├── closest_point.hpp │ │ ├── closest_point.inl │ │ ├── color_encoding.hpp │ │ ├── color_encoding.inl │ │ ├── color_space.hpp │ │ ├── color_space.inl │ │ ├── color_space_YCoCg.hpp │ │ ├── color_space_YCoCg.inl │ │ ├── common.hpp │ │ ├── common.inl │ │ ├── compatibility.hpp │ │ ├── compatibility.inl │ │ ├── component_wise.hpp │ │ ├── component_wise.inl │ │ ├── dual_quaternion.hpp │ │ ├── dual_quaternion.inl │ │ ├── easing.hpp │ │ ├── easing.inl │ │ ├── euler_angles.hpp │ │ ├── euler_angles.inl │ │ ├── extend.hpp │ │ ├── extend.inl │ │ ├── extended_min_max.hpp │ │ ├── extended_min_max.inl │ │ ├── exterior_product.hpp │ │ ├── exterior_product.inl │ │ ├── fast_exponential.hpp │ │ ├── fast_exponential.inl │ │ ├── fast_square_root.hpp │ │ ├── fast_square_root.inl │ │ ├── fast_trigonometry.hpp │ │ ├── fast_trigonometry.inl │ │ ├── float_notmalize.inl │ │ ├── functions.hpp │ │ ├── functions.inl │ │ ├── gradient_paint.hpp │ │ ├── gradient_paint.inl │ │ ├── handed_coordinate_space.hpp │ │ ├── handed_coordinate_space.inl │ │ ├── hash.hpp │ │ ├── hash.inl │ │ ├── integer.hpp │ │ ├── integer.inl │ │ ├── intersect.hpp │ │ ├── intersect.inl │ │ ├── io.hpp │ │ ├── io.inl │ │ ├── log_base.hpp │ │ ├── log_base.inl │ │ ├── matrix_cross_product.hpp │ │ ├── matrix_cross_product.inl │ │ ├── matrix_decompose.hpp │ │ ├── matrix_decompose.inl │ │ ├── matrix_factorisation.hpp │ │ ├── matrix_factorisation.inl │ │ ├── matrix_interpolation.hpp │ │ ├── matrix_interpolation.inl │ │ ├── matrix_major_storage.hpp │ │ ├── matrix_major_storage.inl │ │ ├── matrix_operation.hpp │ │ ├── matrix_operation.inl │ │ ├── matrix_query.hpp │ │ ├── matrix_query.inl │ │ ├── matrix_transform_2d.hpp │ │ ├── matrix_transform_2d.inl │ │ ├── mixed_product.hpp │ │ ├── mixed_product.inl │ │ ├── norm.hpp │ │ ├── norm.inl │ │ ├── normal.hpp │ │ ├── normal.inl │ │ ├── normalize_dot.hpp │ │ ├── normalize_dot.inl │ │ ├── number_precision.hpp │ │ ├── number_precision.inl │ │ ├── optimum_pow.hpp │ │ ├── optimum_pow.inl │ │ ├── orthonormalize.hpp │ │ ├── orthonormalize.inl │ │ ├── perpendicular.hpp │ │ ├── perpendicular.inl │ │ ├── polar_coordinates.hpp │ │ ├── polar_coordinates.inl │ │ ├── projection.hpp │ │ ├── projection.inl │ │ ├── quaternion.hpp │ │ ├── quaternion.inl │ │ ├── range.hpp │ │ ├── raw_data.hpp │ │ ├── raw_data.inl │ │ ├── rotate_normalized_axis.hpp │ │ ├── rotate_normalized_axis.inl │ │ ├── rotate_vector.hpp │ │ ├── rotate_vector.inl │ │ ├── scalar_multiplication.hpp │ │ ├── scalar_relational.hpp │ │ ├── scalar_relational.inl │ │ ├── spline.hpp │ │ ├── spline.inl │ │ ├── std_based_type.hpp │ │ ├── std_based_type.inl │ │ ├── string_cast.hpp │ │ ├── string_cast.inl │ │ ├── texture.hpp │ │ ├── texture.inl │ │ ├── transform.hpp │ │ ├── transform.inl │ │ ├── transform2.hpp │ │ ├── transform2.inl │ │ ├── type_aligned.hpp │ │ ├── type_aligned.inl │ │ ├── type_trait.hpp │ │ ├── type_trait.inl │ │ ├── vec_swizzle.hpp │ │ ├── vector_angle.hpp │ │ ├── vector_angle.inl │ │ ├── vector_query.hpp │ │ ├── vector_query.inl │ │ ├── wrap.hpp │ │ └── wrap.inl │ ├── integer.hpp │ ├── mat2x2.hpp │ ├── mat2x3.hpp │ ├── mat2x4.hpp │ ├── mat3x2.hpp │ ├── mat3x3.hpp │ ├── mat3x4.hpp │ ├── mat4x2.hpp │ ├── mat4x3.hpp │ ├── mat4x4.hpp │ ├── matrix.hpp │ ├── packing.hpp │ ├── simd │ │ ├── common.h │ │ ├── exponential.h │ │ ├── geometric.h │ │ ├── integer.h │ │ ├── matrix.h │ │ ├── packing.h │ │ ├── platform.h │ │ ├── trigonometric.h │ │ └── vector_relational.h │ ├── trigonometric.hpp │ ├── vec2.hpp │ ├── vec3.hpp │ ├── vec4.hpp │ └── vector_relational.hpp │ ├── register_types.cpp │ └── register_types.h ├── godot-docs1.png ├── godot-docs2.png ├── godot-docs3.png ├── splash.png └── testPlugin ├── engine.cfg ├── icon.png ├── icon.png.flags ├── new_scene.gd ├── new_scene.scn ├── utahraptorExport_character_data.zip └── utahraptorExport_character_img.png /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/README.md -------------------------------------------------------------------------------- /creaturegodot/CreatureModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/CreatureModule.cpp -------------------------------------------------------------------------------- /creaturegodot/CreatureModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/CreatureModule.h -------------------------------------------------------------------------------- /creaturegodot/MeshBone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/MeshBone.cpp -------------------------------------------------------------------------------- /creaturegodot/MeshBone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/MeshBone.h -------------------------------------------------------------------------------- /creaturegodot/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/SCsub -------------------------------------------------------------------------------- /creaturegodot/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/config.py -------------------------------------------------------------------------------- /creaturegodot/creaturegodot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/creaturegodot.cpp -------------------------------------------------------------------------------- /creaturegodot/creaturegodot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/creaturegodot.h -------------------------------------------------------------------------------- /creaturegodot/gason.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/gason.cpp -------------------------------------------------------------------------------- /creaturegodot/gason/gason.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/gason/gason.cpp -------------------------------------------------------------------------------- /creaturegodot/gason/gason.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/gason/gason.h -------------------------------------------------------------------------------- /creaturegodot/glm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/CMakeLists.txt -------------------------------------------------------------------------------- /creaturegodot/glm/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/common.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/detail/_features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/_features.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/detail/_fixes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/_fixes.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/detail/_literals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/_literals.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/detail/_noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/_noise.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/detail/_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/_swizzle.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/detail/_swizzle_func.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/_swizzle_func.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/detail/_vectorize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/_vectorize.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/detail/dummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/dummy.cpp -------------------------------------------------------------------------------- /creaturegodot/glm/detail/func_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/func_common.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/detail/func_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/func_common.inl -------------------------------------------------------------------------------- /creaturegodot/glm/detail/func_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/func_exponential.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/detail/func_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/func_exponential.inl -------------------------------------------------------------------------------- /creaturegodot/glm/detail/func_geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/func_geometric.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/detail/func_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/func_geometric.inl -------------------------------------------------------------------------------- /creaturegodot/glm/detail/func_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/func_integer.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/detail/func_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/func_integer.inl -------------------------------------------------------------------------------- /creaturegodot/glm/detail/func_matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/func_matrix.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/detail/func_matrix.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/func_matrix.inl -------------------------------------------------------------------------------- /creaturegodot/glm/detail/func_noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/func_noise.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/detail/func_noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/func_noise.inl -------------------------------------------------------------------------------- /creaturegodot/glm/detail/func_packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/func_packing.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/detail/func_packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/func_packing.inl -------------------------------------------------------------------------------- /creaturegodot/glm/detail/func_trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/func_trigonometric.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/detail/func_trigonometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/func_trigonometric.inl -------------------------------------------------------------------------------- /creaturegodot/glm/detail/func_vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/func_vector_relational.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/detail/func_vector_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/func_vector_relational.inl -------------------------------------------------------------------------------- /creaturegodot/glm/detail/glm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/glm.cpp -------------------------------------------------------------------------------- /creaturegodot/glm/detail/hint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/hint.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/detail/intrinsic_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/intrinsic_common.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/detail/intrinsic_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/intrinsic_common.inl -------------------------------------------------------------------------------- /creaturegodot/glm/detail/intrinsic_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/intrinsic_exponential.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/detail/intrinsic_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/intrinsic_exponential.inl -------------------------------------------------------------------------------- /creaturegodot/glm/detail/intrinsic_geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/intrinsic_geometric.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/detail/intrinsic_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/intrinsic_geometric.inl -------------------------------------------------------------------------------- /creaturegodot/glm/detail/intrinsic_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/intrinsic_integer.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/detail/intrinsic_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/intrinsic_integer.inl -------------------------------------------------------------------------------- /creaturegodot/glm/detail/intrinsic_matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/intrinsic_matrix.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/detail/intrinsic_matrix.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/intrinsic_matrix.inl -------------------------------------------------------------------------------- /creaturegodot/glm/detail/intrinsic_trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/intrinsic_trigonometric.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/detail/intrinsic_trigonometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/intrinsic_trigonometric.inl -------------------------------------------------------------------------------- /creaturegodot/glm/detail/intrinsic_vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/intrinsic_vector_relational.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/detail/intrinsic_vector_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/intrinsic_vector_relational.inl -------------------------------------------------------------------------------- /creaturegodot/glm/detail/precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/precision.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/detail/precision.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /creaturegodot/glm/detail/setup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/setup.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/detail/type_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/type_float.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/detail/type_gentype.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/type_gentype.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/detail/type_gentype.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/type_gentype.inl -------------------------------------------------------------------------------- /creaturegodot/glm/detail/type_half.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/type_half.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/detail/type_half.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/type_half.inl -------------------------------------------------------------------------------- /creaturegodot/glm/detail/type_int.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/type_int.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/detail/type_mat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/type_mat.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/detail/type_mat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/type_mat.inl -------------------------------------------------------------------------------- /creaturegodot/glm/detail/type_mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/type_mat2x2.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/detail/type_mat2x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/type_mat2x2.inl -------------------------------------------------------------------------------- /creaturegodot/glm/detail/type_mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/type_mat2x3.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/detail/type_mat2x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/type_mat2x3.inl -------------------------------------------------------------------------------- /creaturegodot/glm/detail/type_mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/type_mat2x4.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/detail/type_mat2x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/type_mat2x4.inl -------------------------------------------------------------------------------- /creaturegodot/glm/detail/type_mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/type_mat3x2.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/detail/type_mat3x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/type_mat3x2.inl -------------------------------------------------------------------------------- /creaturegodot/glm/detail/type_mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/type_mat3x3.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/detail/type_mat3x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/type_mat3x3.inl -------------------------------------------------------------------------------- /creaturegodot/glm/detail/type_mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/type_mat3x4.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/detail/type_mat3x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/type_mat3x4.inl -------------------------------------------------------------------------------- /creaturegodot/glm/detail/type_mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/type_mat4x2.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/detail/type_mat4x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/type_mat4x2.inl -------------------------------------------------------------------------------- /creaturegodot/glm/detail/type_mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/type_mat4x3.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/detail/type_mat4x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/type_mat4x3.inl -------------------------------------------------------------------------------- /creaturegodot/glm/detail/type_mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/type_mat4x4.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/detail/type_mat4x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/type_mat4x4.inl -------------------------------------------------------------------------------- /creaturegodot/glm/detail/type_vec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/type_vec.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/detail/type_vec.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/type_vec.inl -------------------------------------------------------------------------------- /creaturegodot/glm/detail/type_vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/type_vec1.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/detail/type_vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/type_vec1.inl -------------------------------------------------------------------------------- /creaturegodot/glm/detail/type_vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/type_vec2.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/detail/type_vec2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/type_vec2.inl -------------------------------------------------------------------------------- /creaturegodot/glm/detail/type_vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/type_vec3.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/detail/type_vec3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/type_vec3.inl -------------------------------------------------------------------------------- /creaturegodot/glm/detail/type_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/type_vec4.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/detail/type_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/detail/type_vec4.inl -------------------------------------------------------------------------------- /creaturegodot/glm/exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/exponential.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/ext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/ext.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/fwd.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/geometric.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/glm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/glm.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtc/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtc/constants.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtc/constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtc/constants.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtc/epsilon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtc/epsilon.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtc/epsilon.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtc/epsilon.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtc/matrix_access.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtc/matrix_access.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtc/matrix_access.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtc/matrix_access.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtc/matrix_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtc/matrix_integer.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtc/matrix_inverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtc/matrix_inverse.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtc/matrix_inverse.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtc/matrix_inverse.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtc/matrix_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtc/matrix_transform.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtc/matrix_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtc/matrix_transform.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtc/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtc/noise.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtc/noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtc/noise.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtc/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtc/packing.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtc/packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtc/packing.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtc/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtc/quaternion.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtc/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtc/quaternion.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtc/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtc/random.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtc/random.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtc/random.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtc/reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtc/reciprocal.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtc/reciprocal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtc/reciprocal.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtc/type_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtc/type_precision.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtc/type_precision.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtc/type_precision.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtc/type_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtc/type_ptr.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtc/type_ptr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtc/type_ptr.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtc/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtc/ulp.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtc/ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtc/ulp.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/associated_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/associated_min_max.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/associated_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/associated_min_max.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/bit.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/bit.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/bit.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/closest_point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/closest_point.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/closest_point.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/closest_point.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/color_space.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/color_space.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/color_space_YCoCg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/color_space_YCoCg.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/color_space_YCoCg.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/color_space_YCoCg.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/compatibility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/compatibility.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/compatibility.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/compatibility.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/component_wise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/component_wise.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/component_wise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/component_wise.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/constants.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/dual_quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/dual_quaternion.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/dual_quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/dual_quaternion.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/epsilon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/epsilon.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/euler_angles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/euler_angles.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/euler_angles.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/euler_angles.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/extend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/extend.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/extend.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/extend.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/extented_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/extented_min_max.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/extented_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/extented_min_max.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/fast_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/fast_exponential.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/fast_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/fast_exponential.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/fast_square_root.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/fast_square_root.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/fast_square_root.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/fast_square_root.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/fast_trigonometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/fast_trigonometry.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/fast_trigonometry.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/fast_trigonometry.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/gradient_paint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/gradient_paint.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/gradient_paint.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/gradient_paint.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/handed_coordinate_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/handed_coordinate_space.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/handed_coordinate_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/handed_coordinate_space.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/inertia.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/inertia.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/inertia.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/inertia.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/int_10_10_10_2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/int_10_10_10_2.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/int_10_10_10_2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/int_10_10_10_2.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/integer.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/integer.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/intersect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/intersect.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/intersect.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/intersect.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/io.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/io.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/io.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/log_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/log_base.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/log_base.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/log_base.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/matrix_cross_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/matrix_cross_product.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/matrix_cross_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/matrix_cross_product.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/matrix_interpolation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/matrix_interpolation.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/matrix_interpolation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/matrix_interpolation.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/matrix_major_storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/matrix_major_storage.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/matrix_major_storage.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/matrix_major_storage.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/matrix_operation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/matrix_operation.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/matrix_operation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/matrix_operation.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/matrix_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/matrix_query.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/matrix_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/matrix_query.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/matrix_transform_2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/matrix_transform_2d.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/matrix_transform_2d.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/matrix_transform_2d.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/mixed_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/mixed_product.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/mixed_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/mixed_product.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/multiple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/multiple.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/multiple.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/multiple.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/noise.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/norm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/norm.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/norm.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/norm.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/normal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/normal.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/normal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/normal.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/normalize_dot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/normalize_dot.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/normalize_dot.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/normalize_dot.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/number_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/number_precision.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/number_precision.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/number_precision.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/optimum_pow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/optimum_pow.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/optimum_pow.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/optimum_pow.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/orthonormalize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/orthonormalize.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/orthonormalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/orthonormalize.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/perpendicular.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/perpendicular.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/perpendicular.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/perpendicular.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/polar_coordinates.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/polar_coordinates.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/polar_coordinates.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/polar_coordinates.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/projection.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/projection.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/quaternion.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/quaternion.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/random.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/raw_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/raw_data.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/raw_data.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/raw_data.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/reciprocal.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/rotate_normalized_axis.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/rotate_normalized_axis.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/rotate_normalized_axis.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/rotate_normalized_axis.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/rotate_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/rotate_vector.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/rotate_vector.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/rotate_vector.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/scalar_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/scalar_relational.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/scalar_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/scalar_relational.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/simd_mat4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/simd_mat4.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/simd_mat4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/simd_mat4.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/simd_quat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/simd_quat.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/simd_quat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/simd_quat.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/simd_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/simd_vec4.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/simd_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/simd_vec4.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/spline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/spline.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/spline.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/spline.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/std_based_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/std_based_type.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/std_based_type.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/std_based_type.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/string_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/string_cast.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/string_cast.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/string_cast.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/transform.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/transform.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/transform2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/transform2.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/transform2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/transform2.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/ulp.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/unsigned_int.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/unsigned_int.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/unsigned_int.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/unsigned_int.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/vec1.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/vec1.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/vector_angle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/vector_angle.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/vector_angle.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/vector_angle.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/vector_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/vector_query.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/vector_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/vector_query.inl -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/wrap.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/gtx/wrap.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/gtx/wrap.inl -------------------------------------------------------------------------------- /creaturegodot/glm/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/integer.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/mat2x2.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/mat2x3.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/mat2x4.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/mat3x2.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/mat3x3.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/mat3x4.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/mat4x2.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/mat4x3.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/mat4x4.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/matrix.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/packing.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/trigonometric.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/vec2.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/vec3.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/vec4.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/vector_relational.hpp -------------------------------------------------------------------------------- /creaturegodot/glm/virtrev/xstream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/glm/virtrev/xstream.hpp -------------------------------------------------------------------------------- /creaturegodot/miniz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/miniz.h -------------------------------------------------------------------------------- /creaturegodot/register_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/register_types.cpp -------------------------------------------------------------------------------- /creaturegodot/register_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot/register_types.h -------------------------------------------------------------------------------- /creaturegodot3/Godot3Demo/CreatureGodot.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/Godot3Demo/CreatureGodot.gd -------------------------------------------------------------------------------- /creaturegodot3/Godot3Demo/CreatureGodot.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/Godot3Demo/CreatureGodot.tscn -------------------------------------------------------------------------------- /creaturegodot3/Godot3Demo/CreatureGodotDefault.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/Godot3Demo/CreatureGodotDefault.gd -------------------------------------------------------------------------------- /creaturegodot3/Godot3Demo/CreatureGodotHorse.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/Godot3Demo/CreatureGodotHorse.vs -------------------------------------------------------------------------------- /creaturegodot3/Godot3Demo/CreatureGodotSkinSwap.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/Godot3Demo/CreatureGodotSkinSwap.gd -------------------------------------------------------------------------------- /creaturegodot3/Godot3Demo/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/Godot3Demo/Roboto-Regular.ttf -------------------------------------------------------------------------------- /creaturegodot3/Godot3Demo/bat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/Godot3Demo/bat.json -------------------------------------------------------------------------------- /creaturegodot3/Godot3Demo/bat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/Godot3Demo/bat.png -------------------------------------------------------------------------------- /creaturegodot3/Godot3Demo/bat.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/Godot3Demo/bat.png.import -------------------------------------------------------------------------------- /creaturegodot3/Godot3Demo/default_env.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/Godot3Demo/default_env.tres -------------------------------------------------------------------------------- /creaturegodot3/Godot3Demo/export_presets.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/Godot3Demo/export_presets.cfg -------------------------------------------------------------------------------- /creaturegodot3/Godot3Demo/fox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/Godot3Demo/fox.json -------------------------------------------------------------------------------- /creaturegodot3/Godot3Demo/fox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/Godot3Demo/fox.png -------------------------------------------------------------------------------- /creaturegodot3/Godot3Demo/fox.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/Godot3Demo/fox.png.import -------------------------------------------------------------------------------- /creaturegodot3/Godot3Demo/horseman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/Godot3Demo/horseman.json -------------------------------------------------------------------------------- /creaturegodot3/Godot3Demo/horseman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/Godot3Demo/horseman.png -------------------------------------------------------------------------------- /creaturegodot3/Godot3Demo/horseman.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/Godot3Demo/horseman.png.import -------------------------------------------------------------------------------- /creaturegodot3/Godot3Demo/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/Godot3Demo/icon.png -------------------------------------------------------------------------------- /creaturegodot3/Godot3Demo/icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/Godot3Demo/icon.png.import -------------------------------------------------------------------------------- /creaturegodot3/Godot3Demo/morphTest.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/Godot3Demo/morphTest.gd -------------------------------------------------------------------------------- /creaturegodot3/Godot3Demo/morphTest.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/Godot3Demo/morphTest.tscn -------------------------------------------------------------------------------- /creaturegodot3/Godot3Demo/owlMorph_character_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/Godot3Demo/owlMorph_character_data.json -------------------------------------------------------------------------------- /creaturegodot3/Godot3Demo/owlMorph_character_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/Godot3Demo/owlMorph_character_img.png -------------------------------------------------------------------------------- /creaturegodot3/Godot3Demo/owlMorph_character_img.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/Godot3Demo/owlMorph_character_img.png.import -------------------------------------------------------------------------------- /creaturegodot3/Godot3Demo/owlMorph_character_meta.mdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/Godot3Demo/owlMorph_character_meta.mdata -------------------------------------------------------------------------------- /creaturegodot3/Godot3Demo/project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/Godot3Demo/project.godot -------------------------------------------------------------------------------- /creaturegodot3/Godot3Demo/robotoFont.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/Godot3Demo/robotoFont.tres -------------------------------------------------------------------------------- /creaturegodot3/Godot3Demo/robotoFont2.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/Godot3Demo/robotoFont2.tres -------------------------------------------------------------------------------- /creaturegodot3/Godot3Demo/swapGirl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/Godot3Demo/swapGirl.json -------------------------------------------------------------------------------- /creaturegodot3/Godot3Demo/swapGirl.mdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/Godot3Demo/swapGirl.mdata -------------------------------------------------------------------------------- /creaturegodot3/Godot3Demo/swapGirl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/Godot3Demo/swapGirl.png -------------------------------------------------------------------------------- /creaturegodot3/Godot3Demo/swapGirl.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/Godot3Demo/swapGirl.png.import -------------------------------------------------------------------------------- /creaturegodot3/Godot3Demo/test.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/Godot3Demo/test.gd -------------------------------------------------------------------------------- /creaturegodot3/Godot3Demo/test.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/Godot3Demo/test.tscn -------------------------------------------------------------------------------- /creaturegodot3/Godot3Demo/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/Godot3Demo/title.png -------------------------------------------------------------------------------- /creaturegodot3/Godot3Demo/title.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/Godot3Demo/title.png.import -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/CreatureMetaData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/CreatureMetaData.cpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/CreatureMetaData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/CreatureMetaData.h -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/CreatureModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/CreatureModule.cpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/CreatureModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/CreatureModule.h -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/MeshBone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/MeshBone.cpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/MeshBone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/MeshBone.h -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/SCsub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/SCsub -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/config.py -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/creaturegodot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/creaturegodot.cpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/creaturegodot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/creaturegodot.h -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/gason/gason.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/gason/gason.cpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/gason/gason.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/gason/gason.h -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/CMakeLists.txt -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/common.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/detail/_features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/detail/_features.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/detail/_fixes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/detail/_fixes.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/detail/_noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/detail/_noise.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/detail/_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/detail/_swizzle.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/detail/_swizzle_func.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/detail/_swizzle_func.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/detail/_vectorize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/detail/_vectorize.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/detail/compute_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/detail/compute_common.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/detail/compute_vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/detail/compute_vector_relational.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/detail/func_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/detail/func_common.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/detail/func_common_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/detail/func_common_simd.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/detail/func_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/detail/func_exponential.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/detail/func_exponential_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/detail/func_exponential_simd.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/detail/func_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/detail/func_geometric.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/detail/func_geometric_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/detail/func_geometric_simd.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/detail/func_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/detail/func_integer.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/detail/func_integer_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/detail/func_integer_simd.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/detail/func_matrix.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/detail/func_matrix.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/detail/func_matrix_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/detail/func_matrix_simd.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/detail/func_packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/detail/func_packing.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/detail/func_packing_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/detail/func_packing_simd.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/detail/func_trigonometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/detail/func_trigonometric.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/detail/func_trigonometric_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/detail/func_vector_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/detail/func_vector_relational.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/detail/func_vector_relational_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/detail/func_vector_relational_simd.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/detail/glm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/detail/glm.cpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/detail/qualifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/detail/qualifier.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/detail/setup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/detail/setup.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/detail/type_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/detail/type_float.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/detail/type_half.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/detail/type_half.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/detail/type_half.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/detail/type_half.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/detail/type_mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/detail/type_mat2x2.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/detail/type_mat2x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/detail/type_mat2x2.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/detail/type_mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/detail/type_mat2x3.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/detail/type_mat2x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/detail/type_mat2x3.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/detail/type_mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/detail/type_mat2x4.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/detail/type_mat2x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/detail/type_mat2x4.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/detail/type_mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/detail/type_mat3x2.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/detail/type_mat3x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/detail/type_mat3x2.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/detail/type_mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/detail/type_mat3x3.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/detail/type_mat3x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/detail/type_mat3x3.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/detail/type_mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/detail/type_mat3x4.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/detail/type_mat3x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/detail/type_mat3x4.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/detail/type_mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/detail/type_mat4x2.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/detail/type_mat4x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/detail/type_mat4x2.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/detail/type_mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/detail/type_mat4x3.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/detail/type_mat4x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/detail/type_mat4x3.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/detail/type_mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/detail/type_mat4x4.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/detail/type_mat4x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/detail/type_mat4x4.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/detail/type_mat4x4_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/detail/type_mat4x4_simd.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/detail/type_quat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/detail/type_quat.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/detail/type_quat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/detail/type_quat.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/detail/type_quat_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/detail/type_quat_simd.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/detail/type_vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/detail/type_vec1.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/detail/type_vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/detail/type_vec1.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/detail/type_vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/detail/type_vec2.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/detail/type_vec2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/detail/type_vec2.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/detail/type_vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/detail/type_vec3.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/detail/type_vec3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/detail/type_vec3.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/detail/type_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/detail/type_vec4.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/detail/type_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/detail/type_vec4.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/detail/type_vec4_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/detail/type_vec4_simd.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/exponential.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/matrix_clip_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/matrix_clip_space.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/matrix_clip_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/matrix_clip_space.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/matrix_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/matrix_common.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/matrix_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/matrix_common.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/matrix_double2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/matrix_double2x2.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/matrix_double2x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/matrix_double2x2_precision.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/matrix_double2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/matrix_double2x3.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/matrix_double2x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/matrix_double2x3_precision.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/matrix_double2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/matrix_double2x4.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/matrix_double2x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/matrix_double2x4_precision.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/matrix_double3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/matrix_double3x2.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/matrix_double3x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/matrix_double3x2_precision.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/matrix_double3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/matrix_double3x3.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/matrix_double3x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/matrix_double3x3_precision.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/matrix_double3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/matrix_double3x4.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/matrix_double3x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/matrix_double3x4_precision.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/matrix_double4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/matrix_double4x2.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/matrix_double4x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/matrix_double4x2_precision.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/matrix_double4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/matrix_double4x3.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/matrix_double4x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/matrix_double4x3_precision.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/matrix_double4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/matrix_double4x4.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/matrix_double4x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/matrix_double4x4_precision.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/matrix_float2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/matrix_float2x2.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/matrix_float2x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/matrix_float2x2_precision.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/matrix_float2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/matrix_float2x3.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/matrix_float2x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/matrix_float2x3_precision.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/matrix_float2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/matrix_float2x4.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/matrix_float2x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/matrix_float2x4_precision.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/matrix_float3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/matrix_float3x2.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/matrix_float3x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/matrix_float3x2_precision.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/matrix_float3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/matrix_float3x3.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/matrix_float3x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/matrix_float3x3_precision.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/matrix_float3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/matrix_float3x4.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/matrix_float3x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/matrix_float3x4_precision.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/matrix_float4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/matrix_float4x2.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/matrix_float4x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/matrix_float4x2_precision.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/matrix_float4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/matrix_float4x3.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/matrix_float4x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/matrix_float4x3_precision.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/matrix_float4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/matrix_float4x4.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/matrix_float4x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/matrix_float4x4_precision.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/matrix_projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/matrix_projection.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/matrix_projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/matrix_projection.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/matrix_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/matrix_relational.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/matrix_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/matrix_relational.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/matrix_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/matrix_transform.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/matrix_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/matrix_transform.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/quaternion_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/quaternion_common.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/quaternion_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/quaternion_common.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/quaternion_common_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/quaternion_common_simd.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/quaternion_double.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/quaternion_double.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/quaternion_double_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/quaternion_double_precision.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/quaternion_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/quaternion_exponential.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/quaternion_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/quaternion_exponential.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/quaternion_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/quaternion_float.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/quaternion_float_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/quaternion_float_precision.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/quaternion_geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/quaternion_geometric.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/quaternion_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/quaternion_geometric.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/quaternion_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/quaternion_relational.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/quaternion_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/quaternion_relational.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/quaternion_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/quaternion_transform.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/quaternion_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/quaternion_transform.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/quaternion_trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/quaternion_trigonometric.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/quaternion_trigonometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/quaternion_trigonometric.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/scalar_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/scalar_common.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/scalar_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/scalar_common.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/scalar_constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/scalar_constants.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/scalar_constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/scalar_constants.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/scalar_int_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/scalar_int_sized.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/scalar_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/scalar_integer.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/scalar_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/scalar_integer.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/scalar_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/scalar_relational.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/scalar_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/scalar_relational.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/scalar_uint_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/scalar_uint_sized.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/scalar_ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/scalar_ulp.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/scalar_ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/scalar_ulp.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/vector_bool1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/vector_bool1.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/vector_bool1_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/vector_bool1_precision.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/vector_bool2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/vector_bool2.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/vector_bool2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/vector_bool2_precision.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/vector_bool3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/vector_bool3.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/vector_bool3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/vector_bool3_precision.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/vector_bool4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/vector_bool4.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/vector_bool4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/vector_bool4_precision.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/vector_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/vector_common.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/vector_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/vector_common.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/vector_double1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/vector_double1.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/vector_double1_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/vector_double1_precision.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/vector_double2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/vector_double2.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/vector_double2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/vector_double2_precision.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/vector_double3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/vector_double3.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/vector_double3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/vector_double3_precision.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/vector_double4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/vector_double4.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/vector_double4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/vector_double4_precision.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/vector_float1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/vector_float1.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/vector_float1_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/vector_float1_precision.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/vector_float2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/vector_float2.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/vector_float2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/vector_float2_precision.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/vector_float3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/vector_float3.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/vector_float3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/vector_float3_precision.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/vector_float4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/vector_float4.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/vector_float4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/vector_float4_precision.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/vector_int1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/vector_int1.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/vector_int1_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/vector_int1_precision.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/vector_int2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/vector_int2.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/vector_int2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/vector_int2_precision.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/vector_int3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/vector_int3.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/vector_int3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/vector_int3_precision.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/vector_int4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/vector_int4.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/vector_int4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/vector_int4_precision.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/vector_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/vector_integer.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/vector_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/vector_integer.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/vector_relational.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/vector_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/vector_relational.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/vector_uint1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/vector_uint1.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/vector_uint1_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/vector_uint1_precision.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/vector_uint2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/vector_uint2.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/vector_uint2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/vector_uint2_precision.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/vector_uint3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/vector_uint3.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/vector_uint3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/vector_uint3_precision.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/vector_uint4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/vector_uint4.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/vector_uint4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/vector_uint4_precision.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/vector_ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/vector_ulp.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/ext/vector_ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/ext/vector_ulp.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/fwd.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/geometric.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/glm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/glm.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtc/bitfield.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtc/bitfield.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtc/bitfield.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtc/bitfield.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtc/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtc/color_space.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtc/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtc/color_space.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtc/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtc/constants.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtc/constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtc/constants.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtc/epsilon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtc/epsilon.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtc/epsilon.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtc/epsilon.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtc/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtc/integer.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtc/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtc/integer.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtc/matrix_access.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtc/matrix_access.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtc/matrix_access.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtc/matrix_access.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtc/matrix_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtc/matrix_integer.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtc/matrix_inverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtc/matrix_inverse.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtc/matrix_inverse.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtc/matrix_inverse.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtc/matrix_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtc/matrix_transform.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtc/matrix_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtc/matrix_transform.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtc/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtc/noise.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtc/noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtc/noise.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtc/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtc/packing.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtc/packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtc/packing.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtc/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtc/quaternion.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtc/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtc/quaternion.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtc/quaternion_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtc/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtc/random.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtc/random.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtc/random.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtc/reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtc/reciprocal.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtc/reciprocal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtc/reciprocal.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtc/round.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtc/round.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtc/round.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtc/round.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtc/type_aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtc/type_aligned.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtc/type_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtc/type_precision.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtc/type_precision.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_precision 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtc/type_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtc/type_ptr.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtc/type_ptr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtc/type_ptr.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtc/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtc/ulp.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtc/ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtc/ulp.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtc/vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtc/vec1.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/associated_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/associated_min_max.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/associated_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/associated_min_max.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/bit.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/bit.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/bit.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/closest_point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/closest_point.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/closest_point.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/closest_point.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/color_encoding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/color_encoding.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/color_encoding.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/color_encoding.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/color_space.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/color_space.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/color_space_YCoCg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/color_space_YCoCg.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/color_space_YCoCg.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/color_space_YCoCg.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/common.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/common.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/compatibility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/compatibility.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/compatibility.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/compatibility.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/component_wise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/component_wise.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/component_wise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/component_wise.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/dual_quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/dual_quaternion.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/dual_quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/dual_quaternion.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/easing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/easing.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/easing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/easing.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/euler_angles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/euler_angles.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/euler_angles.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/euler_angles.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/extend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/extend.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/extend.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/extend.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/extended_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/extended_min_max.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/extended_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/extended_min_max.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/exterior_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/exterior_product.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/exterior_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/exterior_product.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/fast_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/fast_exponential.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/fast_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/fast_exponential.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/fast_square_root.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/fast_square_root.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/fast_square_root.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/fast_square_root.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/fast_trigonometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/fast_trigonometry.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/fast_trigonometry.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/fast_trigonometry.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/float_notmalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/float_notmalize.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/functions.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/functions.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/functions.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/gradient_paint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/gradient_paint.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/gradient_paint.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/gradient_paint.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/handed_coordinate_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/handed_coordinate_space.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/handed_coordinate_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/handed_coordinate_space.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/hash.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/hash.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/hash.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/integer.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/integer.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/intersect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/intersect.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/intersect.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/intersect.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/io.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/io.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/io.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/log_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/log_base.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/log_base.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/log_base.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/matrix_cross_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/matrix_cross_product.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/matrix_cross_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/matrix_cross_product.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/matrix_decompose.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/matrix_decompose.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/matrix_decompose.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/matrix_decompose.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/matrix_factorisation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/matrix_factorisation.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/matrix_factorisation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/matrix_factorisation.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/matrix_interpolation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/matrix_interpolation.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/matrix_interpolation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/matrix_interpolation.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/matrix_major_storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/matrix_major_storage.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/matrix_major_storage.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/matrix_major_storage.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/matrix_operation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/matrix_operation.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/matrix_operation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/matrix_operation.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/matrix_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/matrix_query.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/matrix_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/matrix_query.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/matrix_transform_2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/matrix_transform_2d.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/matrix_transform_2d.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/matrix_transform_2d.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/mixed_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/mixed_product.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/mixed_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/mixed_product.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/norm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/norm.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/norm.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/norm.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/normal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/normal.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/normal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/normal.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/normalize_dot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/normalize_dot.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/normalize_dot.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/normalize_dot.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/number_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/number_precision.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/number_precision.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_number_precision 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/optimum_pow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/optimum_pow.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/optimum_pow.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/optimum_pow.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/orthonormalize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/orthonormalize.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/orthonormalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/orthonormalize.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/perpendicular.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/perpendicular.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/perpendicular.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/perpendicular.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/polar_coordinates.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/polar_coordinates.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/polar_coordinates.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/polar_coordinates.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/projection.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/projection.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/quaternion.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/quaternion.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/range.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/raw_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/raw_data.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/raw_data.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_raw_data 2 | 3 | -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/rotate_normalized_axis.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/rotate_normalized_axis.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/rotate_normalized_axis.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/rotate_normalized_axis.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/rotate_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/rotate_vector.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/rotate_vector.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/rotate_vector.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/scalar_multiplication.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/scalar_multiplication.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/scalar_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/scalar_relational.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/scalar_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/scalar_relational.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/spline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/spline.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/spline.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/spline.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/std_based_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/std_based_type.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/std_based_type.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_std_based_type 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/string_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/string_cast.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/string_cast.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/string_cast.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/texture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/texture.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/texture.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/texture.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/transform.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/transform.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/transform2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/transform2.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/transform2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/transform2.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/type_aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/type_aligned.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/type_aligned.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_type_aligned 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/type_trait.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/type_trait.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/type_trait.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/type_trait.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/vec_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/vec_swizzle.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/vector_angle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/vector_angle.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/vector_angle.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/vector_angle.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/vector_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/vector_query.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/vector_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/vector_query.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/wrap.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/gtx/wrap.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/gtx/wrap.inl -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/integer.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/mat2x2.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/mat2x3.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/mat2x4.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/mat3x2.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/mat3x3.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/mat3x4.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/mat4x2.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/mat4x3.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/mat4x4.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/matrix.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/packing.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/simd/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/simd/common.h -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/simd/exponential.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/simd/exponential.h -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/simd/geometric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/simd/geometric.h -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/simd/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/simd/integer.h -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/simd/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/simd/matrix.h -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/simd/packing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/simd/packing.h -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/simd/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/simd/platform.h -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/simd/trigonometric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/simd/trigonometric.h -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/simd/vector_relational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/simd/vector_relational.h -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/trigonometric.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/vec2.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/vec3.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/vec4.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/glm/vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/glm/vector_relational.hpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/register_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/register_types.cpp -------------------------------------------------------------------------------- /creaturegodot3/creaturegodot/register_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/creaturegodot3/creaturegodot/register_types.h -------------------------------------------------------------------------------- /godot-docs1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/godot-docs1.png -------------------------------------------------------------------------------- /godot-docs2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/godot-docs2.png -------------------------------------------------------------------------------- /godot-docs3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/godot-docs3.png -------------------------------------------------------------------------------- /splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/splash.png -------------------------------------------------------------------------------- /testPlugin/engine.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/testPlugin/engine.cfg -------------------------------------------------------------------------------- /testPlugin/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/testPlugin/icon.png -------------------------------------------------------------------------------- /testPlugin/icon.png.flags: -------------------------------------------------------------------------------- 1 | gen_mipmaps=false 2 | -------------------------------------------------------------------------------- /testPlugin/new_scene.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/testPlugin/new_scene.gd -------------------------------------------------------------------------------- /testPlugin/new_scene.scn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/testPlugin/new_scene.scn -------------------------------------------------------------------------------- /testPlugin/utahraptorExport_character_data.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/testPlugin/utahraptorExport_character_data.zip -------------------------------------------------------------------------------- /testPlugin/utahraptorExport_character_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kestrelm/Creature_Godot/HEAD/testPlugin/utahraptorExport_character_img.png --------------------------------------------------------------------------------