Compare commits

...

8 Commits

Author SHA1 Message Date
Nyx
ec75c86f48 Merge branch 'main' of https://github.com/TheRiverNyx/ElistriaCalling 2025-11-15 02:00:09 -07:00
Nyx
e7205dcb1d worked on attributes 2025-11-15 01:35:35 -07:00
Lily Wilson
533f5cfa63 Human + Elf Rig Skeletons and Weights 2025-11-14 23:15:02 -07:00
Lore Natusol
b7d8468984 Merge pull request #68 from Mastraga/main
Weapons in Props Folder, Weapon Mats in Materials Folder
2025-11-11 21:05:12 -07:00
Lore Natusol
f352eba908 Merge pull request #67 from ZachRawlings/main
textured assets: Alligator, Leather Armor, Elven City Objects
2025-11-11 21:05:00 -07:00
Mason S.
c63db8677f Weapons in Props Folder, Weapon Mats in Materials Folder 2025-11-11 20:49:17 -07:00
Zach Rawlings
7da75fd425 moved uvmapped and textures objects to project 2025-11-11 11:53:08 -07:00
Lore Natusol
1324618fea Merge pull request #66 from TheRiverNyx/main
updated settings for 5.6 and some attribute setup
2025-11-09 12:10:52 -07:00
95 changed files with 2632 additions and 37 deletions

View File

@@ -151,10 +151,6 @@
"Name": "NetworkPrediction", "Name": "NetworkPrediction",
"Enabled": true "Enabled": true
}, },
{
"Name": "MassEntity",
"Enabled": true
},
{ {
"Name": "GameplayInteractions", "Name": "GameplayInteractions",
"Enabled": true "Enabled": true
@@ -330,10 +326,6 @@
"Name": "AnimatorKit", "Name": "AnimatorKit",
"Enabled": true "Enabled": true
}, },
{
"Name": "GeneSplicer",
"Enabled": true
},
{ {
"Name": "CurveExpression", "Name": "CurveExpression",
"Enabled": true "Enabled": true

View File

@@ -3,4 +3,91 @@
#include "Attributes/ElistriaAttributesSet.h" #include "Attributes/ElistriaAttributesSet.h"
UElistriaAttributesSet::UElistriaAttributesSet()
{
InitArchery(1);
InitAthletics(1);
InitDeceit(1);
InitDefensibility(1);
InitDiscernment(1);
InitLightWeaponry(1);
InitHeavyWeaponry(1);
InitPerception(1);
InitStealth(1);
InitSurvival(1);
InitAttributePoints(0);
}
void UElistriaAttributesSet::GetLifetimeReplicatedProps(TArray<FLifetimeProperty>& OutLifetimeProps) const
{
Super::GetLifetimeReplicatedProps(OutLifetimeProps);
DOREPLIFETIME_CONDITION_NOTIFY(UElistriaAttributesSet, Archery, COND_None, REPNOTIFY_Always);
DOREPLIFETIME_CONDITION_NOTIFY(UElistriaAttributesSet, Athletics, COND_None, REPNOTIFY_Always);
DOREPLIFETIME_CONDITION_NOTIFY(UElistriaAttributesSet, Deceit, COND_None, REPNOTIFY_Always);
DOREPLIFETIME_CONDITION_NOTIFY(UElistriaAttributesSet, Defensibility, COND_None, REPNOTIFY_Always);
DOREPLIFETIME_CONDITION_NOTIFY(UElistriaAttributesSet, Discernment, COND_None, REPNOTIFY_Always);
DOREPLIFETIME_CONDITION_NOTIFY(UElistriaAttributesSet, LightWeaponry, COND_None, REPNOTIFY_Always);
DOREPLIFETIME_CONDITION_NOTIFY(UElistriaAttributesSet, HeavyWeaponry, COND_None, REPNOTIFY_Always);
DOREPLIFETIME_CONDITION_NOTIFY(UElistriaAttributesSet, Perception, COND_None, REPNOTIFY_Always);
DOREPLIFETIME_CONDITION_NOTIFY(UElistriaAttributesSet, Stealth, COND_None, REPNOTIFY_Always);
DOREPLIFETIME_CONDITION_NOTIFY(UElistriaAttributesSet, Survival, COND_None, REPNOTIFY_Always);
DOREPLIFETIME_CONDITION_NOTIFY(UElistriaAttributesSet, AttributePoints, COND_None, REPNOTIFY_Always);
}
void UElistriaAttributesSet::PostGameplayEffectExecute(const FGameplayEffectModCallbackData& Data)
{
Super::PostGameplayEffectExecute(Data);
}
void UElistriaAttributesSet::OnRep_Archery(const FGameplayAttributeData& OldValue)
{
GAMEPLAYATTRIBUTE_REPNOTIFY(UElistriaAttributesSet, Archery, OldValue);
}
void UElistriaAttributesSet::OnRep_Athletics(const FGameplayAttributeData& OldValue)
{
GAMEPLAYATTRIBUTE_REPNOTIFY(UElistriaAttributesSet, Athletics, OldValue);
}
void UElistriaAttributesSet::OnRep_Deceit(const FGameplayAttributeData& OldValue)
{
GAMEPLAYATTRIBUTE_REPNOTIFY(UElistriaAttributesSet, Deceit, OldValue);
}
void UElistriaAttributesSet::OnRep_Defensibility(const FGameplayAttributeData& OldValue)
{
GAMEPLAYATTRIBUTE_REPNOTIFY(UElistriaAttributesSet, Defensibility, OldValue);
}
void UElistriaAttributesSet::OnRep_Discernment(const FGameplayAttributeData& OldValue)
{
GAMEPLAYATTRIBUTE_REPNOTIFY(UElistriaAttributesSet, Discernment, OldValue);
}
void UElistriaAttributesSet::OnRep_LightWeaponry(const FGameplayAttributeData& OldValue)
{
GAMEPLAYATTRIBUTE_REPNOTIFY(UElistriaAttributesSet, LightWeaponry, OldValue);
}
void UElistriaAttributesSet::OnRep_HeavyWeaponry(const FGameplayAttributeData& OldValue)
{
GAMEPLAYATTRIBUTE_REPNOTIFY(UElistriaAttributesSet, HeavyWeaponry, OldValue);
}
void UElistriaAttributesSet::OnRep_Perception(const FGameplayAttributeData& OldValue)
{
GAMEPLAYATTRIBUTE_REPNOTIFY(UElistriaAttributesSet, Perception, OldValue);
}
void UElistriaAttributesSet::OnRep_Stealth(const FGameplayAttributeData& OldValue)
{
GAMEPLAYATTRIBUTE_REPNOTIFY(UElistriaAttributesSet, Stealth, OldValue);
}
void UElistriaAttributesSet::OnRep_Survival(const FGameplayAttributeData& OldValue)
{
GAMEPLAYATTRIBUTE_REPNOTIFY(UElistriaAttributesSet, Survival, OldValue);
}
void UElistriaAttributesSet::OnRep_AttributePoints(const FGameplayAttributeData& OldValue)
{
GAMEPLAYATTRIBUTE_REPNOTIFY(UElistriaAttributesSet, AttributePoints, OldValue);
}
void UElistriaAttributesSet::OnRep_Thievery(const FGameplayAttributeData& OldValue)
{
GAMEPLAYATTRIBUTE_REPNOTIFY(UElistriaAttributesSet, Thievery, OldValue);
}
void UElistriaAttributesSet::OnRep_Will(const FGameplayAttributeData& OldValue)
{
GAMEPLAYATTRIBUTE_REPNOTIFY(UElistriaAttributesSet, Will, OldValue);
}

View File

@@ -11,6 +11,7 @@ AMagickPlayerState::AMagickPlayerState()
HealthSet = CreateDefaultSubobject<UHealthAttributeSet>(TEXT("HealthSet")); HealthSet = CreateDefaultSubobject<UHealthAttributeSet>(TEXT("HealthSet"));
StaminaSet = CreateDefaultSubobject<UStaminaAttributeSet>(TEXT("StaminaSet")); StaminaSet = CreateDefaultSubobject<UStaminaAttributeSet>(TEXT("StaminaSet"));
LevelSet = CreateDefaultSubobject<ULevelAttributeSet>(TEXT("XPSet")); LevelSet = CreateDefaultSubobject<ULevelAttributeSet>(TEXT("XPSet"));
} }
UElistriaAbilitySystemComponent* AMagickPlayerState::GetAbilitySystemComponent() const UElistriaAbilitySystemComponent* AMagickPlayerState::GetAbilitySystemComponent() const

View File

@@ -3,7 +3,9 @@
#pragma once #pragma once
#include "CoreMinimal.h" #include "CoreMinimal.h"
#include "ElistriaAbilitySystemComponent.h"
#include "ElistriaAttributeSetBase.h" #include "ElistriaAttributeSetBase.h"
#include "Net/UnrealNetwork.h"
#include "ElistriaAttributesSet.generated.h" #include "ElistriaAttributesSet.generated.h"
/** /**
@@ -13,5 +15,115 @@ UCLASS()
class ELISTRIA_CALLING_API UElistriaAttributesSet : public UElistriaAttributeSetBase class ELISTRIA_CALLING_API UElistriaAttributesSet : public UElistriaAttributeSetBase
{ {
GENERATED_BODY() GENERATED_BODY()
public:
UElistriaAttributesSet();
virtual void GetLifetimeReplicatedProps(TArray<FLifetimeProperty>& OutLifetimeProps) const override;
virtual void PostGameplayEffectExecute(const FGameplayEffectModCallbackData& Data) override;
UPROPERTY(VisibleAnywhere, BlueprintReadOnly, ReplicatedUsing=OnRep_Archery)
FGameplayAttributeData Archery;
ATTRIBUTE_ACCESSORS(UElistriaAttributesSet, Archery)
UPROPERTY(VisibleAnywhere, BlueprintReadOnly, ReplicatedUsing=OnRep_Athletics)
FGameplayAttributeData Athletics;
ATTRIBUTE_ACCESSORS(UElistriaAttributesSet, Athletics)
UPROPERTY(VisibleAnywhere, BlueprintReadOnly, ReplicatedUsing=OnRep_Deceit)
FGameplayAttributeData Deceit;
ATTRIBUTE_ACCESSORS(UElistriaAttributesSet, Deceit)
UPROPERTY(VisibleAnywhere, BlueprintReadOnly, ReplicatedUsing = OnRep_Defensibility)
FGameplayAttributeData Defensibility;
ATTRIBUTE_ACCESSORS(UElistriaAttributesSet, Defensibility)
UPROPERTY(VisibleAnywhere, BlueprintReadOnly, ReplicatedUsing=OnRep_Discernment)
FGameplayAttributeData Discernment;
ATTRIBUTE_ACCESSORS(UElistriaAttributesSet, Discernment)
UPROPERTY(VisibleAnywhere, BlueprintReadOnly, ReplicatedUsing=OnRep_LightWeaponry)
FGameplayAttributeData LightWeaponry;
ATTRIBUTE_ACCESSORS(UElistriaAttributesSet, LightWeaponry)
UPROPERTY(VisibleAnywhere, BlueprintReadOnly, ReplicatedUsing = OnRep_HeavyWeaponry)
FGameplayAttributeData HeavyWeaponry;
ATTRIBUTE_ACCESSORS(UElistriaAttributesSet, HeavyWeaponry)
UPROPERTY(VisibleAnywhere, BlueprintReadOnly, ReplicatedUsing=OnRep_Perception)
FGameplayAttributeData Perception;
ATTRIBUTE_ACCESSORS(UElistriaAttributesSet, Perception)
UPROPERTY(VisibleAnywhere, BlueprintReadOnly, ReplicatedUsing=OnRep_Stealth)
FGameplayAttributeData Stealth;
ATTRIBUTE_ACCESSORS(UElistriaAttributesSet, Stealth)
UPROPERTY(VisibleAnywhere, BlueprintReadOnly, ReplicatedUsing=OnRep_Survival)
FGameplayAttributeData Survival;
ATTRIBUTE_ACCESSORS(UElistriaAttributesSet, Survival)
UPROPERTY(VisibleAnywhere, BlueprintReadOnly, ReplicatedUsing=OnRep_Thievery)
FGameplayAttributeData Thievery;
ATTRIBUTE_ACCESSORS(UElistriaAttributesSet, Thievery)
UPROPERTY(VisibleAnywhere, BlueprintReadOnly, ReplicatedUsing=OnRep_Will)
FGameplayAttributeData Will;
ATTRIBUTE_ACCESSORS(UElistriaAttributesSet, Will)
UPROPERTY(VisibleAnywhere, BlueprintReadWrite, ReplicatedUsing=OnRep_AttributePoints)
FGameplayAttributeData AttributePoints;
ATTRIBUTE_ACCESSORS(UElistriaAttributesSet, AttributePoints)
UFUNCTION()
void OnRep_Archery(const FGameplayAttributeData& OldValue);
UFUNCTION()
void OnRep_Athletics(const FGameplayAttributeData& OldValue);
UFUNCTION()
void OnRep_Deceit(const FGameplayAttributeData& OldValue);
UFUNCTION()
void OnRep_Defensibility(const FGameplayAttributeData& OldValue);
UFUNCTION()
void OnRep_Discernment(const FGameplayAttributeData& OldValue);
UFUNCTION()
void OnRep_LightWeaponry(const FGameplayAttributeData& OldValue);
UFUNCTION()
void OnRep_HeavyWeaponry(const FGameplayAttributeData& OldValue);
UFUNCTION()
void OnRep_Perception(const FGameplayAttributeData& OldValue);
UFUNCTION()
void OnRep_Stealth(const FGameplayAttributeData& OldValue);
UFUNCTION()
void OnRep_Survival(const FGameplayAttributeData& OldValue);
UFUNCTION()
void OnRep_Thievery(const FGameplayAttributeData& OldValue);
UFUNCTION()
void OnRep_Will(const FGameplayAttributeData& OldValue);
UFUNCTION()
void OnRep_AttributePoints(const FGameplayAttributeData& OldValue);
UPROPERTY(BlueprintAssignable)
FAttributeChangedEvent OnArcheryChanged;
UPROPERTY(BlueprintAssignable)
FAttributeChangedEvent OnAthleticsChanged;
UPROPERTY(BlueprintAssignable)
FAttributeChangedEvent OnDeceitChanged;
UPROPERTY(BlueprintAssignable)
FAttributeChangedEvent OnDefensibilityChanged;
UPROPERTY(BlueprintAssignable)
FAttributeChangedEvent OnDiscernmentChanged;
UPROPERTY(BlueprintAssignable)
FAttributeChangedEvent OnLightWeaponryChanged;
UPROPERTY(BlueprintAssignable)
FAttributeChangedEvent OnHeavyWeaponryChanged;
UPROPERTY(BlueprintAssignable)
FAttributeChangedEvent OnPerceptionChanged;
UPROPERTY(BlueprintAssignable)
FAttributeChangedEvent OnStealthChanged;
UPROPERTY(BlueprintAssignable)
FAttributeChangedEvent OnSurvivalChanged;
UPROPERTY(BlueprintAssignable)
FAttributeChangedEvent OnThieveryChanged;
UPROPERTY(BlueprintAssignable)
FAttributeChangedEvent OnWillChanged;
UPROPERTY(BlueprintAssignable)
FAttributeChangedEvent OnAttributePointsChanged;
}; };

View File

@@ -3,7 +3,7 @@
#pragma once #pragma once
#include "CoreMinimal.h" #include "CoreMinimal.h"
#include "AbilitySystemComponent.h" #include "ElistriaAbilitySystemComponent.h"
#include "AttributeSet.h" #include "AttributeSet.h"
#include "ElistriaAttributeSetBase.h" #include "ElistriaAttributeSetBase.h"
#include "Net/UnrealNetwork.h" #include "Net/UnrealNetwork.h"

View File

@@ -4,7 +4,7 @@
#include "CoreMinimal.h" #include "CoreMinimal.h"
#include "ElistriaAttributeSetBase.h" #include "ElistriaAttributeSetBase.h"
#include "AbilitySystemComponent.h" #include "ElistriaAbilitySystemComponent.h"
#include "Net/UnrealNetwork.h" #include "Net/UnrealNetwork.h"
#include "GameplayEffectExtension.h" #include "GameplayEffectExtension.h"
#include "ManaAttributeSet.h" #include "ManaAttributeSet.h"

View File

@@ -3,7 +3,7 @@
#pragma once #pragma once
#include "CoreMinimal.h" #include "CoreMinimal.h"
#include "AbilitySystemComponent.h" #include "ElistriaAbilitySystemComponent.h"
#include "ElistriaAttributeSetBase.h" #include "ElistriaAttributeSetBase.h"
#include "Net/UnrealNetwork.h" #include "Net/UnrealNetwork.h"
#include "GameplayEffectExtension.h" #include "GameplayEffectExtension.h"

View File

@@ -3,7 +3,7 @@
#pragma once #pragma once
#include "CoreMinimal.h" #include "CoreMinimal.h"
#include "AttributeSet.h" #include "ElistriaAbilitySystemComponent.h"
#include "ElistriaAttributeSetBase.h" #include "ElistriaAttributeSetBase.h"
#include "HealthAttributeSet.h" #include "HealthAttributeSet.h"
#include "StaminaAttributeSet.generated.h" #include "StaminaAttributeSet.generated.h"

View File

@@ -3,6 +3,7 @@
#pragma once #pragma once
#include "CoreMinimal.h" #include "CoreMinimal.h"
#include "ElistriaAbilitySystemComponent.h"
#include "AttributeSet.h" #include "AttributeSet.h"
#include "ElistriaAttributeSetBase.generated.h" #include "ElistriaAttributeSetBase.generated.h"

Binary file not shown.

After

Width:  |  Height:  |  Size: 151 KiB

View File

@@ -0,0 +1,131 @@
{
"asset":
{
"version": "2.0",
"generator": "Unreal Engine 5.4.4"
},
"scene": 0,
"accessors": [
{
"bufferView": 0,
"count": 11904,
"type": "SCALAR",
"componentType": 5123
},
{
"bufferView": 1,
"count": 2333,
"type": "VEC3",
"componentType": 5126,
"min": [ -1.5999999, -1.5999999, -1.5999999 ],
"max": [ 1.5999999, 1.5999999, 1.5999999 ]
},
{
"bufferView": 2,
"count": 2333,
"type": "VEC3",
"componentType": 5126
},
{
"bufferView": 3,
"count": 2333,
"type": "VEC4",
"componentType": 5126
},
{
"bufferView": 4,
"count": 2333,
"type": "VEC2",
"componentType": 5126
},
{
"bufferView": 5,
"count": 2333,
"type": "VEC2",
"componentType": 5126
}
],
"buffers": [
{
"uri": "M_GatorBase.bin",
"byteLength": 154456
}
],
"bufferViews": [
{
"buffer": 0,
"byteLength": 23808,
"target": 34963
},
{
"buffer": 0,
"byteLength": 27996,
"byteOffset": 23808,
"target": 34962
},
{
"buffer": 0,
"byteLength": 27996,
"byteOffset": 51804,
"target": 34962
},
{
"buffer": 0,
"byteLength": 37328,
"byteOffset": 79800,
"target": 34962
},
{
"buffer": 0,
"byteLength": 18664,
"byteOffset": 117128,
"target": 34962
},
{
"buffer": 0,
"byteLength": 18664,
"byteOffset": 135792,
"target": 34962
}
],
"materials": [
{
"name": "M_GatorBase",
"pbrMetallicRoughness":
{
"baseColorFactor": [ 0.0119130779, 0.0947917327, 0.00523329852, 1 ],
"metallicFactor": 0,
"roughnessFactor": 0.5
}
}
],
"meshes": [
{
"name": "EditorSphere",
"primitives": [
{
"attributes":
{
"POSITION": 1,
"NORMAL": 2,
"TANGENT": 3,
"TEXCOORD_0": 4,
"TEXCOORD_1": 5
},
"indices": 0,
"material": 0
}
]
}
],
"nodes": [
{
"mesh": 0
}
],
"scenes": [
{
"nodes": [ 0 ]
}
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 151 KiB

View File

@@ -0,0 +1,131 @@
{
"asset":
{
"version": "2.0",
"generator": "Unreal Engine 5.4.4"
},
"scene": 0,
"accessors": [
{
"bufferView": 0,
"count": 11904,
"type": "SCALAR",
"componentType": 5123
},
{
"bufferView": 1,
"count": 2333,
"type": "VEC3",
"componentType": 5126,
"min": [ -1.5999999, -1.5999999, -1.5999999 ],
"max": [ 1.5999999, 1.5999999, 1.5999999 ]
},
{
"bufferView": 2,
"count": 2333,
"type": "VEC3",
"componentType": 5126
},
{
"bufferView": 3,
"count": 2333,
"type": "VEC4",
"componentType": 5126
},
{
"bufferView": 4,
"count": 2333,
"type": "VEC2",
"componentType": 5126
},
{
"bufferView": 5,
"count": 2333,
"type": "VEC2",
"componentType": 5126
}
],
"buffers": [
{
"uri": "M_GatorClaws.bin",
"byteLength": 154456
}
],
"bufferViews": [
{
"buffer": 0,
"byteLength": 23808,
"target": 34963
},
{
"buffer": 0,
"byteLength": 27996,
"byteOffset": 23808,
"target": 34962
},
{
"buffer": 0,
"byteLength": 27996,
"byteOffset": 51804,
"target": 34962
},
{
"buffer": 0,
"byteLength": 37328,
"byteOffset": 79800,
"target": 34962
},
{
"buffer": 0,
"byteLength": 18664,
"byteOffset": 117128,
"target": 34962
},
{
"buffer": 0,
"byteLength": 18664,
"byteOffset": 135792,
"target": 34962
}
],
"materials": [
{
"name": "M_GatorClaws",
"pbrMetallicRoughness":
{
"baseColorFactor": [ 0.56145829, 0.506862998, 0.489521444, 1 ],
"metallicFactor": 0,
"roughnessFactor": 0.5
}
}
],
"meshes": [
{
"name": "EditorSphere",
"primitives": [
{
"attributes":
{
"POSITION": 1,
"NORMAL": 2,
"TANGENT": 3,
"TEXCOORD_0": 4,
"TEXCOORD_1": 5
},
"indices": 0,
"material": 0
}
]
}
],
"nodes": [
{
"mesh": 0
}
],
"scenes": [
{
"nodes": [ 0 ]
}
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 151 KiB

View File

@@ -0,0 +1,131 @@
{
"asset":
{
"version": "2.0",
"generator": "Unreal Engine 5.4.4"
},
"scene": 0,
"accessors": [
{
"bufferView": 0,
"count": 11904,
"type": "SCALAR",
"componentType": 5123
},
{
"bufferView": 1,
"count": 2333,
"type": "VEC3",
"componentType": 5126,
"min": [ -1.5999999, -1.5999999, -1.5999999 ],
"max": [ 1.5999999, 1.5999999, 1.5999999 ]
},
{
"bufferView": 2,
"count": 2333,
"type": "VEC3",
"componentType": 5126
},
{
"bufferView": 3,
"count": 2333,
"type": "VEC4",
"componentType": 5126
},
{
"bufferView": 4,
"count": 2333,
"type": "VEC2",
"componentType": 5126
},
{
"bufferView": 5,
"count": 2333,
"type": "VEC2",
"componentType": 5126
}
],
"buffers": [
{
"uri": "M_GatorEyes.bin",
"byteLength": 154456
}
],
"bufferViews": [
{
"buffer": 0,
"byteLength": 23808,
"target": 34963
},
{
"buffer": 0,
"byteLength": 27996,
"byteOffset": 23808,
"target": 34962
},
{
"buffer": 0,
"byteLength": 27996,
"byteOffset": 51804,
"target": 34962
},
{
"buffer": 0,
"byteLength": 37328,
"byteOffset": 79800,
"target": 34962
},
{
"buffer": 0,
"byteLength": 18664,
"byteOffset": 117128,
"target": 34962
},
{
"buffer": 0,
"byteLength": 18664,
"byteOffset": 135792,
"target": 34962
}
],
"materials": [
{
"name": "M_GatorEyes",
"pbrMetallicRoughness":
{
"baseColorFactor": [ 0, 0, 0, 1 ],
"metallicFactor": 0,
"roughnessFactor": 0.5
}
}
],
"meshes": [
{
"name": "EditorSphere",
"primitives": [
{
"attributes":
{
"POSITION": 1,
"NORMAL": 2,
"TANGENT": 3,
"TEXCOORD_0": 4,
"TEXCOORD_1": 5
},
"indices": 0,
"material": 0
}
]
}
],
"nodes": [
{
"mesh": 0
}
],
"scenes": [
{
"nodes": [ 0 ]
}
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 151 KiB

View File

@@ -0,0 +1,131 @@
{
"asset":
{
"version": "2.0",
"generator": "Unreal Engine 5.4.4"
},
"scene": 0,
"accessors": [
{
"bufferView": 0,
"count": 11904,
"type": "SCALAR",
"componentType": 5123
},
{
"bufferView": 1,
"count": 2333,
"type": "VEC3",
"componentType": 5126,
"min": [ -1.5999999, -1.5999999, -1.5999999 ],
"max": [ 1.5999999, 1.5999999, 1.5999999 ]
},
{
"bufferView": 2,
"count": 2333,
"type": "VEC3",
"componentType": 5126
},
{
"bufferView": 3,
"count": 2333,
"type": "VEC4",
"componentType": 5126
},
{
"bufferView": 4,
"count": 2333,
"type": "VEC2",
"componentType": 5126
},
{
"bufferView": 5,
"count": 2333,
"type": "VEC2",
"componentType": 5126
}
],
"buffers": [
{
"uri": "M_GatorMouth.bin",
"byteLength": 154456
}
],
"bufferViews": [
{
"buffer": 0,
"byteLength": 23808,
"target": 34963
},
{
"buffer": 0,
"byteLength": 27996,
"byteOffset": 23808,
"target": 34962
},
{
"buffer": 0,
"byteLength": 27996,
"byteOffset": 51804,
"target": 34962
},
{
"buffer": 0,
"byteLength": 37328,
"byteOffset": 79800,
"target": 34962
},
{
"buffer": 0,
"byteLength": 18664,
"byteOffset": 117128,
"target": 34962
},
{
"buffer": 0,
"byteLength": 18664,
"byteOffset": 135792,
"target": 34962
}
],
"materials": [
{
"name": "M_GatorMouth",
"pbrMetallicRoughness":
{
"baseColorFactor": [ 1, 0.286000073, 0.898419142, 1 ],
"metallicFactor": 0,
"roughnessFactor": 0.5
}
}
],
"meshes": [
{
"name": "EditorSphere",
"primitives": [
{
"attributes":
{
"POSITION": 1,
"NORMAL": 2,
"TANGENT": 3,
"TEXCOORD_0": 4,
"TEXCOORD_1": 5
},
"indices": 0,
"material": 0
}
]
}
],
"nodes": [
{
"mesh": 0
}
],
"scenes": [
{
"nodes": [ 0 ]
}
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 151 KiB

View File

@@ -0,0 +1,131 @@
{
"asset":
{
"version": "2.0",
"generator": "Unreal Engine 5.4.4"
},
"scene": 0,
"accessors": [
{
"bufferView": 0,
"count": 11904,
"type": "SCALAR",
"componentType": 5123
},
{
"bufferView": 1,
"count": 2333,
"type": "VEC3",
"componentType": 5126,
"min": [ -1.5999999, -1.5999999, -1.5999999 ],
"max": [ 1.5999999, 1.5999999, 1.5999999 ]
},
{
"bufferView": 2,
"count": 2333,
"type": "VEC3",
"componentType": 5126
},
{
"bufferView": 3,
"count": 2333,
"type": "VEC4",
"componentType": 5126
},
{
"bufferView": 4,
"count": 2333,
"type": "VEC2",
"componentType": 5126
},
{
"bufferView": 5,
"count": 2333,
"type": "VEC2",
"componentType": 5126
}
],
"buffers": [
{
"uri": "M_GatorNos.bin",
"byteLength": 154456
}
],
"bufferViews": [
{
"buffer": 0,
"byteLength": 23808,
"target": 34963
},
{
"buffer": 0,
"byteLength": 27996,
"byteOffset": 23808,
"target": 34962
},
{
"buffer": 0,
"byteLength": 27996,
"byteOffset": 51804,
"target": 34962
},
{
"buffer": 0,
"byteLength": 37328,
"byteOffset": 79800,
"target": 34962
},
{
"buffer": 0,
"byteLength": 18664,
"byteOffset": 117128,
"target": 34962
},
{
"buffer": 0,
"byteLength": 18664,
"byteOffset": 135792,
"target": 34962
}
],
"materials": [
{
"name": "M_GatorNos",
"pbrMetallicRoughness":
{
"baseColorFactor": [ 0, 0, 0, 1 ],
"metallicFactor": 0,
"roughnessFactor": 0.5
}
}
],
"meshes": [
{
"name": "EditorSphere",
"primitives": [
{
"attributes":
{
"POSITION": 1,
"NORMAL": 2,
"TANGENT": 3,
"TEXCOORD_0": 4,
"TEXCOORD_1": 5
},
"indices": 0,
"material": 0
}
]
}
],
"nodes": [
{
"mesh": 0
}
],
"scenes": [
{
"nodes": [ 0 ]
}
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 151 KiB

View File

@@ -0,0 +1,131 @@
{
"asset":
{
"version": "2.0",
"generator": "Unreal Engine 5.4.4"
},
"scene": 0,
"accessors": [
{
"bufferView": 0,
"count": 11904,
"type": "SCALAR",
"componentType": 5123
},
{
"bufferView": 1,
"count": 2333,
"type": "VEC3",
"componentType": 5126,
"min": [ -1.5999999, -1.5999999, -1.5999999 ],
"max": [ 1.5999999, 1.5999999, 1.5999999 ]
},
{
"bufferView": 2,
"count": 2333,
"type": "VEC3",
"componentType": 5126
},
{
"bufferView": 3,
"count": 2333,
"type": "VEC4",
"componentType": 5126
},
{
"bufferView": 4,
"count": 2333,
"type": "VEC2",
"componentType": 5126
},
{
"bufferView": 5,
"count": 2333,
"type": "VEC2",
"componentType": 5126
}
],
"buffers": [
{
"uri": "M_GatorSpikes.bin",
"byteLength": 154456
}
],
"bufferViews": [
{
"buffer": 0,
"byteLength": 23808,
"target": 34963
},
{
"buffer": 0,
"byteLength": 27996,
"byteOffset": 23808,
"target": 34962
},
{
"buffer": 0,
"byteLength": 27996,
"byteOffset": 51804,
"target": 34962
},
{
"buffer": 0,
"byteLength": 37328,
"byteOffset": 79800,
"target": 34962
},
{
"buffer": 0,
"byteLength": 18664,
"byteOffset": 117128,
"target": 34962
},
{
"buffer": 0,
"byteLength": 18664,
"byteOffset": 135792,
"target": 34962
}
],
"materials": [
{
"name": "M_GatorSpikes",
"pbrMetallicRoughness":
{
"baseColorFactor": [ 0.0315586291, 0.0656250343, 0.00499023916, 1 ],
"metallicFactor": 0,
"roughnessFactor": 0.5
}
}
],
"meshes": [
{
"name": "EditorSphere",
"primitives": [
{
"attributes":
{
"POSITION": 1,
"NORMAL": 2,
"TANGENT": 3,
"TEXCOORD_0": 4,
"TEXCOORD_1": 5
},
"indices": 0,
"material": 0
}
]
}
],
"nodes": [
{
"mesh": 0
}
],
"scenes": [
{
"nodes": [ 0 ]
}
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 151 KiB

View File

@@ -0,0 +1,131 @@
{
"asset":
{
"version": "2.0",
"generator": "Unreal Engine 5.4.4"
},
"scene": 0,
"accessors": [
{
"bufferView": 0,
"count": 11904,
"type": "SCALAR",
"componentType": 5123
},
{
"bufferView": 1,
"count": 2333,
"type": "VEC3",
"componentType": 5126,
"min": [ -1.5999999, -1.5999999, -1.5999999 ],
"max": [ 1.5999999, 1.5999999, 1.5999999 ]
},
{
"bufferView": 2,
"count": 2333,
"type": "VEC3",
"componentType": 5126
},
{
"bufferView": 3,
"count": 2333,
"type": "VEC4",
"componentType": 5126
},
{
"bufferView": 4,
"count": 2333,
"type": "VEC2",
"componentType": 5126
},
{
"bufferView": 5,
"count": 2333,
"type": "VEC2",
"componentType": 5126
}
],
"buffers": [
{
"uri": "M_GatorTeeth.bin",
"byteLength": 154456
}
],
"bufferViews": [
{
"buffer": 0,
"byteLength": 23808,
"target": 34963
},
{
"buffer": 0,
"byteLength": 27996,
"byteOffset": 23808,
"target": 34962
},
{
"buffer": 0,
"byteLength": 27996,
"byteOffset": 51804,
"target": 34962
},
{
"buffer": 0,
"byteLength": 37328,
"byteOffset": 79800,
"target": 34962
},
{
"buffer": 0,
"byteLength": 18664,
"byteOffset": 117128,
"target": 34962
},
{
"buffer": 0,
"byteLength": 18664,
"byteOffset": 135792,
"target": 34962
}
],
"materials": [
{
"name": "M_GatorTeeth",
"pbrMetallicRoughness":
{
"baseColorFactor": [ 0.786458313, 0.615488887, 0.482524991, 1 ],
"metallicFactor": 0,
"roughnessFactor": 0.5
}
}
],
"meshes": [
{
"name": "EditorSphere",
"primitives": [
{
"attributes":
{
"POSITION": 1,
"NORMAL": 2,
"TANGENT": 3,
"TEXCOORD_0": 4,
"TEXCOORD_1": 5
},
"indices": 0,
"material": 0
}
]
}
],
"nodes": [
{
"mesh": 0
}
],
"scenes": [
{
"nodes": [ 0 ]
}
]
}

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,110 @@
fileFormatVersion: 2
guid: c94b33e9000c30c43ae1a6d7bfc4d38a
ModelImporter:
serializedVersion: 24200
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 2
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 1
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations: []
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 0
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
generateMeshLods: 0
meshLodGenerationFlags: 0
maximumMeshLod: -1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human: []
skeleton: []
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {instanceID: 0}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 2
humanoidOversampling: 1
avatarSetup: 0
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

After

Width:  |  Height:  |  Size: 151 KiB

View File

@@ -0,0 +1,131 @@
{
"asset":
{
"version": "2.0",
"generator": "Unreal Engine 5.4.4"
},
"scene": 0,
"accessors": [
{
"bufferView": 0,
"count": 11904,
"type": "SCALAR",
"componentType": 5123
},
{
"bufferView": 1,
"count": 2333,
"type": "VEC3",
"componentType": 5126,
"min": [ -1.5999999, -1.5999999, -1.5999999 ],
"max": [ 1.5999999, 1.5999999, 1.5999999 ]
},
{
"bufferView": 2,
"count": 2333,
"type": "VEC3",
"componentType": 5126
},
{
"bufferView": 3,
"count": 2333,
"type": "VEC4",
"componentType": 5126
},
{
"bufferView": 4,
"count": 2333,
"type": "VEC2",
"componentType": 5126
},
{
"bufferView": 5,
"count": 2333,
"type": "VEC2",
"componentType": 5126
}
],
"buffers": [
{
"uri": "benchplanks.bin",
"byteLength": 154456
}
],
"bufferViews": [
{
"buffer": 0,
"byteLength": 23808,
"target": 34963
},
{
"buffer": 0,
"byteLength": 27996,
"byteOffset": 23808,
"target": 34962
},
{
"buffer": 0,
"byteLength": 27996,
"byteOffset": 51804,
"target": 34962
},
{
"buffer": 0,
"byteLength": 37328,
"byteOffset": 79800,
"target": 34962
},
{
"buffer": 0,
"byteLength": 18664,
"byteOffset": 117128,
"target": 34962
},
{
"buffer": 0,
"byteLength": 18664,
"byteOffset": 135792,
"target": 34962
}
],
"materials": [
{
"name": "benchplanks",
"pbrMetallicRoughness":
{
"baseColorFactor": [ 0.115625061, 0.0751537085, 0.042998068, 1 ],
"metallicFactor": 0,
"roughnessFactor": 0.800000012
}
}
],
"meshes": [
{
"name": "EditorSphere",
"primitives": [
{
"attributes":
{
"POSITION": 1,
"NORMAL": 2,
"TANGENT": 3,
"TEXCOORD_0": 4,
"TEXCOORD_1": 5
},
"indices": 0,
"material": 0
}
]
}
],
"nodes": [
{
"mesh": 0
}
],
"scenes": [
{
"nodes": [ 0 ]
}
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 151 KiB

View File

@@ -0,0 +1,130 @@
{
"asset":
{
"version": "2.0",
"generator": "Unreal Engine 5.4.4"
},
"scene": 0,
"accessors": [
{
"bufferView": 0,
"count": 11904,
"type": "SCALAR",
"componentType": 5123
},
{
"bufferView": 1,
"count": 2333,
"type": "VEC3",
"componentType": 5126,
"min": [ -1.5999999, -1.5999999, -1.5999999 ],
"max": [ 1.5999999, 1.5999999, 1.5999999 ]
},
{
"bufferView": 2,
"count": 2333,
"type": "VEC3",
"componentType": 5126
},
{
"bufferView": 3,
"count": 2333,
"type": "VEC4",
"componentType": 5126
},
{
"bufferView": 4,
"count": 2333,
"type": "VEC2",
"componentType": 5126
},
{
"bufferView": 5,
"count": 2333,
"type": "VEC2",
"componentType": 5126
}
],
"buffers": [
{
"uri": "lamphead.bin",
"byteLength": 154456
}
],
"bufferViews": [
{
"buffer": 0,
"byteLength": 23808,
"target": 34963
},
{
"buffer": 0,
"byteLength": 27996,
"byteOffset": 23808,
"target": 34962
},
{
"buffer": 0,
"byteLength": 27996,
"byteOffset": 51804,
"target": 34962
},
{
"buffer": 0,
"byteLength": 37328,
"byteOffset": 79800,
"target": 34962
},
{
"buffer": 0,
"byteLength": 18664,
"byteOffset": 117128,
"target": 34962
},
{
"buffer": 0,
"byteLength": 18664,
"byteOffset": 135792,
"target": 34962
}
],
"materials": [
{
"name": "lamphead",
"pbrMetallicRoughness":
{
"baseColorFactor": [ 0.632291794, 0.632291794, 0.632291794, 1 ],
"roughnessFactor": 0.5
}
}
],
"meshes": [
{
"name": "EditorSphere",
"primitives": [
{
"attributes":
{
"POSITION": 1,
"NORMAL": 2,
"TANGENT": 3,
"TEXCOORD_0": 4,
"TEXCOORD_1": 5
},
"indices": 0,
"material": 0
}
]
}
],
"nodes": [
{
"mesh": 0
}
],
"scenes": [
{
"nodes": [ 0 ]
}
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 151 KiB

View File

@@ -0,0 +1,130 @@
{
"asset":
{
"version": "2.0",
"generator": "Unreal Engine 5.4.4"
},
"scene": 0,
"accessors": [
{
"bufferView": 0,
"count": 11904,
"type": "SCALAR",
"componentType": 5123
},
{
"bufferView": 1,
"count": 2333,
"type": "VEC3",
"componentType": 5126,
"min": [ -1.5999999, -1.5999999, -1.5999999 ],
"max": [ 1.5999999, 1.5999999, 1.5999999 ]
},
{
"bufferView": 2,
"count": 2333,
"type": "VEC3",
"componentType": 5126
},
{
"bufferView": 3,
"count": 2333,
"type": "VEC4",
"componentType": 5126
},
{
"bufferView": 4,
"count": 2333,
"type": "VEC2",
"componentType": 5126
},
{
"bufferView": 5,
"count": 2333,
"type": "VEC2",
"componentType": 5126
}
],
"buffers": [
{
"uri": "leaves.bin",
"byteLength": 154456
}
],
"bufferViews": [
{
"buffer": 0,
"byteLength": 23808,
"target": 34963
},
{
"buffer": 0,
"byteLength": 27996,
"byteOffset": 23808,
"target": 34962
},
{
"buffer": 0,
"byteLength": 27996,
"byteOffset": 51804,
"target": 34962
},
{
"buffer": 0,
"byteLength": 37328,
"byteOffset": 79800,
"target": 34962
},
{
"buffer": 0,
"byteLength": 18664,
"byteOffset": 117128,
"target": 34962
},
{
"buffer": 0,
"byteLength": 18664,
"byteOffset": 135792,
"target": 34962
}
],
"materials": [
{
"name": "leaves",
"pbrMetallicRoughness":
{
"baseColorFactor": [ 0.0194520503, 0.0947917327, 0.0233929791, 1 ],
"metallicFactor": 0
}
}
],
"meshes": [
{
"name": "EditorSphere",
"primitives": [
{
"attributes":
{
"POSITION": 1,
"NORMAL": 2,
"TANGENT": 3,
"TEXCOORD_0": 4,
"TEXCOORD_1": 5
},
"indices": 0,
"material": 0
}
]
}
],
"nodes": [
{
"mesh": 0
}
],
"scenes": [
{
"nodes": [ 0 ]
}
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 151 KiB

View File

@@ -0,0 +1,131 @@
{
"asset":
{
"version": "2.0",
"generator": "Unreal Engine 5.4.4"
},
"scene": 0,
"accessors": [
{
"bufferView": 0,
"count": 11904,
"type": "SCALAR",
"componentType": 5123
},
{
"bufferView": 1,
"count": 2333,
"type": "VEC3",
"componentType": 5126,
"min": [ -1.5999999, -1.5999999, -1.5999999 ],
"max": [ 1.5999999, 1.5999999, 1.5999999 ]
},
{
"bufferView": 2,
"count": 2333,
"type": "VEC3",
"componentType": 5126
},
{
"bufferView": 3,
"count": 2333,
"type": "VEC4",
"componentType": 5126
},
{
"bufferView": 4,
"count": 2333,
"type": "VEC2",
"componentType": 5126
},
{
"bufferView": 5,
"count": 2333,
"type": "VEC2",
"componentType": 5126
}
],
"buffers": [
{
"uri": "obelisk.bin",
"byteLength": 154456
}
],
"bufferViews": [
{
"buffer": 0,
"byteLength": 23808,
"target": 34963
},
{
"buffer": 0,
"byteLength": 27996,
"byteOffset": 23808,
"target": 34962
},
{
"buffer": 0,
"byteLength": 27996,
"byteOffset": 51804,
"target": 34962
},
{
"buffer": 0,
"byteLength": 37328,
"byteOffset": 79800,
"target": 34962
},
{
"buffer": 0,
"byteLength": 18664,
"byteOffset": 117128,
"target": 34962
},
{
"buffer": 0,
"byteLength": 18664,
"byteOffset": 135792,
"target": 34962
}
],
"materials": [
{
"name": "obelisk",
"pbrMetallicRoughness":
{
"baseColorFactor": [ 0.0887880027, 0.093701072, 0.0980000049, 1 ],
"metallicFactor": 0.100000001,
"roughnessFactor": 3
}
}
],
"meshes": [
{
"name": "EditorSphere",
"primitives": [
{
"attributes":
{
"POSITION": 1,
"NORMAL": 2,
"TANGENT": 3,
"TEXCOORD_0": 4,
"TEXCOORD_1": 5
},
"indices": 0,
"material": 0
}
]
}
],
"nodes": [
{
"mesh": 0
}
],
"scenes": [
{
"nodes": [ 0 ]
}
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 151 KiB

View File

@@ -0,0 +1,130 @@
{
"asset":
{
"version": "2.0",
"generator": "Unreal Engine 5.4.4"
},
"scene": 0,
"accessors": [
{
"bufferView": 0,
"count": 11904,
"type": "SCALAR",
"componentType": 5123
},
{
"bufferView": 1,
"count": 2333,
"type": "VEC3",
"componentType": 5126,
"min": [ -1.5999999, -1.5999999, -1.5999999 ],
"max": [ 1.5999999, 1.5999999, 1.5999999 ]
},
{
"bufferView": 2,
"count": 2333,
"type": "VEC3",
"componentType": 5126
},
{
"bufferView": 3,
"count": 2333,
"type": "VEC4",
"componentType": 5126
},
{
"bufferView": 4,
"count": 2333,
"type": "VEC2",
"componentType": 5126
},
{
"bufferView": 5,
"count": 2333,
"type": "VEC2",
"componentType": 5126
}
],
"buffers": [
{
"uri": "railing.bin",
"byteLength": 154456
}
],
"bufferViews": [
{
"buffer": 0,
"byteLength": 23808,
"target": 34963
},
{
"buffer": 0,
"byteLength": 27996,
"byteOffset": 23808,
"target": 34962
},
{
"buffer": 0,
"byteLength": 27996,
"byteOffset": 51804,
"target": 34962
},
{
"buffer": 0,
"byteLength": 37328,
"byteOffset": 79800,
"target": 34962
},
{
"buffer": 0,
"byteLength": 18664,
"byteOffset": 117128,
"target": 34962
},
{
"buffer": 0,
"byteLength": 18664,
"byteOffset": 135792,
"target": 34962
}
],
"materials": [
{
"name": "railing",
"pbrMetallicRoughness":
{
"baseColorFactor": [ 0.0281249676, 0.017061092, 0.0058886623, 1 ],
"metallicFactor": 0
}
}
],
"meshes": [
{
"name": "EditorSphere",
"primitives": [
{
"attributes":
{
"POSITION": 1,
"NORMAL": 2,
"TANGENT": 3,
"TEXCOORD_0": 4,
"TEXCOORD_1": 5
},
"indices": 0,
"material": 0
}
]
}
],
"nodes": [
{
"mesh": 0
}
],
"scenes": [
{
"nodes": [ 0 ]
}
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 151 KiB

View File

@@ -0,0 +1,131 @@
{
"asset":
{
"version": "2.0",
"generator": "Unreal Engine 5.4.4"
},
"scene": 0,
"accessors": [
{
"bufferView": 0,
"count": 11904,
"type": "SCALAR",
"componentType": 5123
},
{
"bufferView": 1,
"count": 2333,
"type": "VEC3",
"componentType": 5126,
"min": [ -1.5999999, -1.5999999, -1.5999999 ],
"max": [ 1.5999999, 1.5999999, 1.5999999 ]
},
{
"bufferView": 2,
"count": 2333,
"type": "VEC3",
"componentType": 5126
},
{
"bufferView": 3,
"count": 2333,
"type": "VEC4",
"componentType": 5126
},
{
"bufferView": 4,
"count": 2333,
"type": "VEC2",
"componentType": 5126
},
{
"bufferView": 5,
"count": 2333,
"type": "VEC2",
"componentType": 5126
}
],
"buffers": [
{
"uri": "standardSurface1.bin",
"byteLength": 154456
}
],
"bufferViews": [
{
"buffer": 0,
"byteLength": 23808,
"target": 34963
},
{
"buffer": 0,
"byteLength": 27996,
"byteOffset": 23808,
"target": 34962
},
{
"buffer": 0,
"byteLength": 27996,
"byteOffset": 51804,
"target": 34962
},
{
"buffer": 0,
"byteLength": 37328,
"byteOffset": 79800,
"target": 34962
},
{
"buffer": 0,
"byteLength": 18664,
"byteOffset": 117128,
"target": 34962
},
{
"buffer": 0,
"byteLength": 18664,
"byteOffset": 135792,
"target": 34962
}
],
"materials": [
{
"name": "standardSurface1",
"pbrMetallicRoughness":
{
"baseColorFactor": [ 0.0822917596, 0.0456184968, 0.00728625106, 1 ],
"metallicFactor": 0,
"roughnessFactor": 0.699999988
}
}
],
"meshes": [
{
"name": "EditorSphere",
"primitives": [
{
"attributes":
{
"POSITION": 1,
"NORMAL": 2,
"TANGENT": 3,
"TEXCOORD_0": 4,
"TEXCOORD_1": 5
},
"indices": 0,
"material": 0
}
]
}
],
"nodes": [
{
"mesh": 0
}
],
"scenes": [
{
"nodes": [ 0 ]
}
]
}

View File

@@ -0,0 +1,83 @@
Begin Object Class=/Script/Engine.Blueprint Name="FbxScene_Leather_Armor" ExportPath="/Script/Engine.Blueprint'/Game/FbxScene_Leather_Armor.FbxScene_Leather_Armor'"
Begin Object Class=/Script/Engine.EdGraph Name="UserConstructionScript" ExportPath="/Script/Engine.EdGraph'/Game/FbxScene_Leather_Armor.FbxScene_Leather_Armor:UserConstructionScript'"
Begin Object Class=/Script/BlueprintGraph.K2Node_FunctionEntry Name="K2Node_FunctionEntry_0" ExportPath="/Script/BlueprintGraph.K2Node_FunctionEntry'/Game/FbxScene_Leather_Armor.FbxScene_Leather_Armor:UserConstructionScript.K2Node_FunctionEntry_0'"
End Object
End Object
Begin Object Class=/Script/Engine.EdGraph Name="EventGraph" ExportPath="/Script/Engine.EdGraph'/Game/FbxScene_Leather_Armor.FbxScene_Leather_Armor:EventGraph'"
Begin Object Class=/Script/BlueprintGraph.K2Node_Event Name="K2Node_Event_0" ExportPath="/Script/BlueprintGraph.K2Node_Event'/Game/FbxScene_Leather_Armor.FbxScene_Leather_Armor:EventGraph.K2Node_Event_0'"
End Object
Begin Object Class=/Script/BlueprintGraph.K2Node_Event Name="K2Node_Event_1" ExportPath="/Script/BlueprintGraph.K2Node_Event'/Game/FbxScene_Leather_Armor.FbxScene_Leather_Armor:EventGraph.K2Node_Event_1'"
End Object
Begin Object Class=/Script/BlueprintGraph.K2Node_Event Name="K2Node_Event_2" ExportPath="/Script/BlueprintGraph.K2Node_Event'/Game/FbxScene_Leather_Armor.FbxScene_Leather_Armor:EventGraph.K2Node_Event_2'"
End Object
End Object
Begin Object Name="UserConstructionScript" ExportPath="/Script/Engine.EdGraph'/Game/FbxScene_Leather_Armor.FbxScene_Leather_Armor:UserConstructionScript'"
Begin Object Name="K2Node_FunctionEntry_0" ExportPath="/Script/BlueprintGraph.K2Node_FunctionEntry'/Game/FbxScene_Leather_Armor.FbxScene_Leather_Armor:UserConstructionScript.K2Node_FunctionEntry_0'"
FunctionReference=(MemberParent="/Script/CoreUObject.Class'/Script/Engine.Actor'",MemberName="UserConstructionScript")
NodeGuid=B4F49A744CBEB034894BC49A8EC8EF57
CustomProperties Pin (PinId=C6C1C153479150280644C588E82EAA35,PinName="then",Direction="EGPD_Output",PinType.PinCategory="exec",PinType.PinSubCategory="",PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Schema="/Script/CoreUObject.Class'/Script/BlueprintGraph.EdGraphSchema_K2'"
Nodes(0)="/Script/BlueprintGraph.K2Node_FunctionEntry'K2Node_FunctionEntry_0'"
bAllowDeletion=False
GraphGuid=EAA0AB5741E61BA3BA053FB8A7DCC3A2
End Object
Begin Object Name="EventGraph" ExportPath="/Script/Engine.EdGraph'/Game/FbxScene_Leather_Armor.FbxScene_Leather_Armor:EventGraph'"
Begin Object Name="K2Node_Event_0" ExportPath="/Script/BlueprintGraph.K2Node_Event'/Game/FbxScene_Leather_Armor.FbxScene_Leather_Armor:EventGraph.K2Node_Event_0'"
EventReference=(MemberParent="/Script/CoreUObject.Class'/Script/Engine.Actor'",MemberName="ReceiveBeginPlay")
bOverrideFunction=True
EnabledState=Disabled
bCommentBubblePinned=True
bCommentBubbleVisible=True
NodeComment="This node is disabled and will not be called.\nDrag off pins to build functionality."
NodeGuid=914755F44D9EE8A963D3DB97B7CB7E61
CustomProperties Pin (PinId=D8D7AD3541E0DCC8CCE8BEAA33125438,PinName="OutputDelegate",Direction="EGPD_Output",PinType.PinCategory="delegate",PinType.PinSubCategory="",PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(MemberParent="/Script/CoreUObject.Class'/Script/Engine.Actor'",MemberName="ReceiveBeginPlay"),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
CustomProperties Pin (PinId=E939264B4ED536B7543BB38001946991,PinName="then",Direction="EGPD_Output",PinType.PinCategory="exec",PinType.PinSubCategory="",PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Name="K2Node_Event_1" ExportPath="/Script/BlueprintGraph.K2Node_Event'/Game/FbxScene_Leather_Armor.FbxScene_Leather_Armor:EventGraph.K2Node_Event_1'"
EventReference=(MemberParent="/Script/CoreUObject.Class'/Script/Engine.Actor'",MemberName="ReceiveActorBeginOverlap")
bOverrideFunction=True
NodePosY=208
EnabledState=Disabled
bCommentBubblePinned=True
bCommentBubbleVisible=True
NodeComment="This node is disabled and will not be called.\nDrag off pins to build functionality."
NodeGuid=1EC1899147C09E02C4026F876C3DC27C
CustomProperties Pin (PinId=066F1BB14202FAFB82CD6B9123937E1B,PinName="OutputDelegate",Direction="EGPD_Output",PinType.PinCategory="delegate",PinType.PinSubCategory="",PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(MemberParent="/Script/CoreUObject.Class'/Script/Engine.Actor'",MemberName="ReceiveActorBeginOverlap"),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
CustomProperties Pin (PinId=2976A46541803CDC807992B47BA5F668,PinName="then",Direction="EGPD_Output",PinType.PinCategory="exec",PinType.PinSubCategory="",PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
CustomProperties Pin (PinId=6C310FBE43BB4A925EDF5386B073C57C,PinName="OtherActor",PinToolTip="Other Actor\nActor Object Reference",Direction="EGPD_Output",PinType.PinCategory="object",PinType.PinSubCategory="",PinType.PinSubCategoryObject="/Script/CoreUObject.Class'/Script/Engine.Actor'",PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Name="K2Node_Event_2" ExportPath="/Script/BlueprintGraph.K2Node_Event'/Game/FbxScene_Leather_Armor.FbxScene_Leather_Armor:EventGraph.K2Node_Event_2'"
EventReference=(MemberParent="/Script/CoreUObject.Class'/Script/Engine.Actor'",MemberName="ReceiveTick")
bOverrideFunction=True
NodePosY=416
EnabledState=Disabled
bCommentBubblePinned=True
bCommentBubbleVisible=True
NodeComment="This node is disabled and will not be called.\nDrag off pins to build functionality."
NodeGuid=F49649D749525129E4FEAEBAE3B3534C
CustomProperties Pin (PinId=46F8E76F4AFA1A17894C7B876B38BC9E,PinName="OutputDelegate",Direction="EGPD_Output",PinType.PinCategory="delegate",PinType.PinSubCategory="",PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(MemberParent="/Script/CoreUObject.Class'/Script/Engine.Actor'",MemberName="ReceiveTick"),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
CustomProperties Pin (PinId=2D6D87F942B01BC1CF44AD95DE9EB607,PinName="then",Direction="EGPD_Output",PinType.PinCategory="exec",PinType.PinSubCategory="",PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
CustomProperties Pin (PinId=261BAA534AC6A56EB34A21890C8F3E55,PinName="DeltaSeconds",PinToolTip="Delta Seconds\nFloat (single-precision)",Direction="EGPD_Output",PinType.PinCategory="real",PinType.PinSubCategory="float",PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue="0.0",AutogeneratedDefaultValue="0.0",PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Schema="/Script/CoreUObject.Class'/Script/BlueprintGraph.EdGraphSchema_K2'"
Nodes(0)="/Script/BlueprintGraph.K2Node_Event'K2Node_Event_0'"
Nodes(1)="/Script/BlueprintGraph.K2Node_Event'K2Node_Event_1'"
Nodes(2)="/Script/BlueprintGraph.K2Node_Event'K2Node_Event_2'"
bAllowDeletion=False
GraphGuid=41F538854CE1CC4DC502D180D4D63B3F
End Object
ParentClass="/Script/CoreUObject.Class'/Script/Engine.Actor'"
BlueprintSystemVersion=2
SimpleConstructionScript="/Script/Engine.SimpleConstructionScript'FbxScene_Leather_Armor_C:SimpleConstructionScript_0'"
UbergraphPages(0)="/Script/Engine.EdGraph'EventGraph'"
FunctionGraphs(0)="/Script/Engine.EdGraph'UserConstructionScript'"
CategorySorting(0)="Default"
CategorySorting(1)=""
CategorySorting(2)="Event Graph"
LastEditedDocuments(0)=(EditedObjectPath="/Game/FbxScene_Leather_Armor.FbxScene_Leather_Armor:UserConstructionScript",SavedZoomAmount=1.000000)
LastEditedDocuments(1)=(EditedObjectPath="/Game/FbxScene_Leather_Armor.FbxScene_Leather_Armor:EventGraph",SavedZoomAmount=1.000000)
GeneratedClass="/Script/Engine.BlueprintGeneratedClass'FbxScene_Leather_Armor_C'"
bLegacyNeedToPurgeSkelRefs=False
BlueprintGuid=550305564EE89BFF271978A3CB3790A3
End Object

View File

@@ -0,0 +1,3 @@
Begin Object Class=/Script/UnrealEd.FbxSceneImportData Name="Leather_Armor" ExportPath="/Script/UnrealEd.FbxSceneImportData'/Game/Leather_Armor.Leather_Armor'"
SourceFbxFile="C:/Users/zachr/Documents/UVU/UVU_AGD_Portfolio/UnityProject/Assets/MayaProjects/scenes/Leather_Armor.fbx"
End Object

Binary file not shown.

After

Width:  |  Height:  |  Size: 151 KiB

View File

@@ -0,0 +1,130 @@
{
"asset":
{
"version": "2.0",
"generator": "Unreal Engine 5.4.4"
},
"scene": 0,
"accessors": [
{
"bufferView": 0,
"count": 11904,
"type": "SCALAR",
"componentType": 5123
},
{
"bufferView": 1,
"count": 2333,
"type": "VEC3",
"componentType": 5126,
"min": [ -1.5999999, -1.5999999, -1.5999999 ],
"max": [ 1.5999999, 1.5999999, 1.5999999 ]
},
{
"bufferView": 2,
"count": 2333,
"type": "VEC3",
"componentType": 5126
},
{
"bufferView": 3,
"count": 2333,
"type": "VEC4",
"componentType": 5126
},
{
"bufferView": 4,
"count": 2333,
"type": "VEC2",
"componentType": 5126
},
{
"bufferView": 5,
"count": 2333,
"type": "VEC2",
"componentType": 5126
}
],
"buffers": [
{
"uri": "Buckle.bin",
"byteLength": 154456
}
],
"bufferViews": [
{
"buffer": 0,
"byteLength": 23808,
"target": 34963
},
{
"buffer": 0,
"byteLength": 27996,
"byteOffset": 23808,
"target": 34962
},
{
"buffer": 0,
"byteLength": 27996,
"byteOffset": 51804,
"target": 34962
},
{
"buffer": 0,
"byteLength": 37328,
"byteOffset": 79800,
"target": 34962
},
{
"buffer": 0,
"byteLength": 18664,
"byteOffset": 117128,
"target": 34962
},
{
"buffer": 0,
"byteLength": 18664,
"byteOffset": 135792,
"target": 34962
}
],
"materials": [
{
"name": "Buckle",
"pbrMetallicRoughness":
{
"baseColorFactor": [ 0.102241732, 0.104616486, 0.0998987257, 1 ],
"roughnessFactor": 0.5
}
}
],
"meshes": [
{
"name": "EditorSphere",
"primitives": [
{
"attributes":
{
"POSITION": 1,
"NORMAL": 2,
"TANGENT": 3,
"TEXCOORD_0": 4,
"TEXCOORD_1": 5
},
"indices": 0,
"material": 0
}
]
}
],
"nodes": [
{
"mesh": 0
}
],
"scenes": [
{
"nodes": [ 0 ]
}
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 151 KiB

View File

@@ -0,0 +1,131 @@
{
"asset":
{
"version": "2.0",
"generator": "Unreal Engine 5.4.4"
},
"scene": 0,
"accessors": [
{
"bufferView": 0,
"count": 11904,
"type": "SCALAR",
"componentType": 5123
},
{
"bufferView": 1,
"count": 2333,
"type": "VEC3",
"componentType": 5126,
"min": [ -1.5999999, -1.5999999, -1.5999999 ],
"max": [ 1.5999999, 1.5999999, 1.5999999 ]
},
{
"bufferView": 2,
"count": 2333,
"type": "VEC3",
"componentType": 5126
},
{
"bufferView": 3,
"count": 2333,
"type": "VEC4",
"componentType": 5126
},
{
"bufferView": 4,
"count": 2333,
"type": "VEC2",
"componentType": 5126
},
{
"bufferView": 5,
"count": 2333,
"type": "VEC2",
"componentType": 5126
}
],
"buffers": [
{
"uri": "LeatherAccent.bin",
"byteLength": 154456
}
],
"bufferViews": [
{
"buffer": 0,
"byteLength": 23808,
"target": 34963
},
{
"buffer": 0,
"byteLength": 27996,
"byteOffset": 23808,
"target": 34962
},
{
"buffer": 0,
"byteLength": 27996,
"byteOffset": 51804,
"target": 34962
},
{
"buffer": 0,
"byteLength": 37328,
"byteOffset": 79800,
"target": 34962
},
{
"buffer": 0,
"byteLength": 18664,
"byteOffset": 117128,
"target": 34962
},
{
"buffer": 0,
"byteLength": 18664,
"byteOffset": 135792,
"target": 34962
}
],
"materials": [
{
"name": "LeatherAccent",
"pbrMetallicRoughness":
{
"baseColorFactor": [ 0.157291725, 0.0746350288, 0.0388313942, 1 ],
"metallicFactor": 0,
"roughnessFactor": 0.5
}
}
],
"meshes": [
{
"name": "EditorSphere",
"primitives": [
{
"attributes":
{
"POSITION": 1,
"NORMAL": 2,
"TANGENT": 3,
"TEXCOORD_0": 4,
"TEXCOORD_1": 5
},
"indices": 0,
"material": 0
}
]
}
],
"nodes": [
{
"mesh": 0
}
],
"scenes": [
{
"nodes": [ 0 ]
}
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 151 KiB

View File

@@ -0,0 +1,131 @@
{
"asset":
{
"version": "2.0",
"generator": "Unreal Engine 5.4.4"
},
"scene": 0,
"accessors": [
{
"bufferView": 0,
"count": 11904,
"type": "SCALAR",
"componentType": 5123
},
{
"bufferView": 1,
"count": 2333,
"type": "VEC3",
"componentType": 5126,
"min": [ -1.5999999, -1.5999999, -1.5999999 ],
"max": [ 1.5999999, 1.5999999, 1.5999999 ]
},
{
"bufferView": 2,
"count": 2333,
"type": "VEC3",
"componentType": 5126
},
{
"bufferView": 3,
"count": 2333,
"type": "VEC4",
"componentType": 5126
},
{
"bufferView": 4,
"count": 2333,
"type": "VEC2",
"componentType": 5126
},
{
"bufferView": 5,
"count": 2333,
"type": "VEC2",
"componentType": 5126
}
],
"buffers": [
{
"uri": "LeatherBase.bin",
"byteLength": 154456
}
],
"bufferViews": [
{
"buffer": 0,
"byteLength": 23808,
"target": 34963
},
{
"buffer": 0,
"byteLength": 27996,
"byteOffset": 23808,
"target": 34962
},
{
"buffer": 0,
"byteLength": 27996,
"byteOffset": 51804,
"target": 34962
},
{
"buffer": 0,
"byteLength": 37328,
"byteOffset": 79800,
"target": 34962
},
{
"buffer": 0,
"byteLength": 18664,
"byteOffset": 117128,
"target": 34962
},
{
"buffer": 0,
"byteLength": 18664,
"byteOffset": 135792,
"target": 34962
}
],
"materials": [
{
"name": "LeatherBase",
"pbrMetallicRoughness":
{
"baseColorFactor": [ 0.248958275, 0.077971518, 0.0215564054, 1 ],
"metallicFactor": 0,
"roughnessFactor": 0.5
}
}
],
"meshes": [
{
"name": "EditorSphere",
"primitives": [
{
"attributes":
{
"POSITION": 1,
"NORMAL": 2,
"TANGENT": 3,
"TEXCOORD_0": 4,
"TEXCOORD_1": 5
},
"indices": 0,
"material": 0
}
]
}
],
"nodes": [
{
"mesh": 0
}
],
"scenes": [
{
"nodes": [ 0 ]
}
]
}