├── CHANGELOG.md ├── CHANGELOG.md.meta ├── Editor.meta ├── Editor ├── Hedera.Editor.asmdef ├── Hedera.Editor.asmdef.meta ├── Scripts.meta ├── Scripts │ ├── IvyCore.cs │ ├── IvyCore.cs.meta │ ├── IvyDataAssetEditor.cs │ ├── IvyDataAssetEditor.cs.meta │ ├── IvyEditor.cs │ ├── IvyEditor.cs.meta │ ├── IvyMesh.cs │ ├── IvyMesh.cs.meta │ ├── IvyProfileEditor.cs │ └── IvyProfileEditor.cs.meta ├── ThirdParty.meta └── ThirdParty │ ├── ObjExport.cs │ ├── ObjExport.cs.meta │ ├── SimplifyCSharp.meta │ └── SimplifyCSharp │ ├── BaseSimplifier.cs │ ├── BaseSimplifier.cs.meta │ ├── LICENSE │ ├── LICENSE.meta │ ├── README.md │ ├── README.md.meta │ ├── SimplificationHelpers.cs │ ├── SimplificationHelpers.cs.meta │ ├── Simplifier2D.cs │ ├── Simplifier2D.cs.meta │ ├── Simplifier3D.cs │ └── Simplifier3D.cs.meta ├── LICENSE.md ├── LICENSE.md.meta ├── README.md ├── README.md.meta ├── Runtime.meta ├── Runtime ├── EditorOnlyScripts.meta ├── EditorOnlyScripts │ ├── IvyData.cs │ ├── IvyData.cs.meta │ ├── IvyDataAsset.cs │ ├── IvyDataAsset.cs.meta │ ├── IvyProfileAsset.cs │ └── IvyProfileAsset.cs.meta ├── Hedera.Runtime.asmdef ├── Hedera.Runtime.asmdef.meta ├── Scripts.meta ├── Scripts │ ├── IvyBehavior.cs │ └── IvyBehavior.cs.meta ├── Shaders.meta └── Shaders │ ├── HederaIvyFoliage.shader │ └── HederaIvyFoliage.shader.meta ├── Samples~ ├── ExampleIvyScene.meta └── ExampleIvyScene │ ├── ExampleIvyMeshExport.obj │ ├── ExampleIvyMeshExport.obj.meta │ ├── HederaExampleScene.meta │ ├── HederaExampleScene.unity │ ├── HederaExampleScene.unity.meta │ ├── HederaExampleScene │ ├── HederaData.asset │ ├── HederaData.asset.meta │ ├── LightingData.asset │ ├── LightingData.asset.meta │ ├── ReflectionProbe-0.exr │ └── ReflectionProbe-0.exr.meta │ ├── IvyProfiles.meta │ ├── IvyProfiles │ ├── IvyProfile_CableWire.asset │ ├── IvyProfile_CableWire.asset.meta │ ├── IvyProfile_Cartoon.asset │ ├── IvyProfile_Cartoon.asset.meta │ ├── IvyProfile_CartoonRainbow.asset │ ├── IvyProfile_CartoonRainbow.asset.meta │ ├── IvyProfile_Realistic.asset │ ├── IvyProfile_Realistic.asset.meta │ ├── IvyProfile_RealisticAutumn.asset │ └── IvyProfile_RealisticAutumn.asset.meta │ ├── Materials.meta │ ├── Materials │ ├── IvyBranchCable.mat │ ├── IvyBranchCable.mat.meta │ ├── IvyBranchCartoon.mat │ ├── IvyBranchCartoon.mat.meta │ ├── IvyBranchWood.mat │ ├── IvyBranchWood.mat.meta │ ├── IvyLeafCartoon.mat │ ├── IvyLeafCartoon.mat.meta │ ├── IvyLeafDead.mat │ ├── IvyLeafDead.mat.meta │ ├── IvyLeafMature.mat │ ├── IvyLeafMature.mat.meta │ ├── IvyLeafYoung.mat │ └── IvyLeafYoung.mat.meta │ ├── Scripts.meta │ ├── Scripts │ ├── OpenHederaExampleScene.cs │ └── OpenHederaExampleScene.cs.meta │ ├── Textures.meta │ └── Textures │ ├── IvyBranchWood_Diffuse.png │ ├── IvyBranchWood_Diffuse.png.meta │ ├── IvyBranchWood_Height.jpg │ ├── IvyBranchWood_Height.jpg.meta │ ├── IvyBranchWood_Normal.jpg │ ├── IvyBranchWood_Normal.jpg.meta │ ├── IvyBranchWood_Roughness.jpg │ ├── IvyBranchWood_Roughness.jpg.meta │ ├── IvyLeafDead1_Alpha.jpg │ ├── IvyLeafDead1_Alpha.jpg.meta │ ├── IvyLeafDead1_Diffuse.tga │ ├── IvyLeafDead1_Diffuse.tga.meta │ ├── IvyLeafDead2_Alpha.jpg │ ├── IvyLeafDead2_Alpha.jpg.meta │ ├── IvyLeafDead2_Diffuse.tga │ ├── IvyLeafDead2_Diffuse.tga.meta │ ├── IvyLeafMature_Alpha.jpg │ ├── IvyLeafMature_Alpha.jpg.meta │ ├── IvyLeafMature_Diffuse.tga │ ├── IvyLeafMature_Diffuse.tga.meta │ ├── IvyLeafMature_Normal.jpg │ ├── IvyLeafMature_Normal.jpg.meta │ ├── IvyLeafMature_Roughness.jpg │ ├── IvyLeafMature_Roughness.jpg.meta │ ├── IvyLeafMature_Roughness_Lighter.png │ ├── IvyLeafMature_Roughness_Lighter.png.meta │ ├── IvyLeafMature_Translucence.jpg │ ├── IvyLeafMature_Translucence.jpg.meta │ ├── IvyLeafYoung_Alpha.jpg │ ├── IvyLeafYoung_Alpha.jpg.meta │ ├── IvyLeafYoung_Diffuse.tga │ ├── IvyLeafYoung_Diffuse.tga.meta │ ├── IvyLeafYoung_Height.jpg │ ├── IvyLeafYoung_Height.jpg.meta │ ├── IvyLeafYoung_Normal.jpg │ ├── IvyLeafYoung_Normal.jpg.meta │ ├── IvyLeafYoung_Roughness.jpg │ └── IvyLeafYoung_Roughness.jpg.meta ├── package.json └── package.json.meta /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CHANGELOG.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/CHANGELOG.md.meta -------------------------------------------------------------------------------- /Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Editor.meta -------------------------------------------------------------------------------- /Editor/Hedera.Editor.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Editor/Hedera.Editor.asmdef -------------------------------------------------------------------------------- /Editor/Hedera.Editor.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Editor/Hedera.Editor.asmdef.meta -------------------------------------------------------------------------------- /Editor/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Editor/Scripts.meta -------------------------------------------------------------------------------- /Editor/Scripts/IvyCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Editor/Scripts/IvyCore.cs -------------------------------------------------------------------------------- /Editor/Scripts/IvyCore.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Editor/Scripts/IvyCore.cs.meta -------------------------------------------------------------------------------- /Editor/Scripts/IvyDataAssetEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Editor/Scripts/IvyDataAssetEditor.cs -------------------------------------------------------------------------------- /Editor/Scripts/IvyDataAssetEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Editor/Scripts/IvyDataAssetEditor.cs.meta -------------------------------------------------------------------------------- /Editor/Scripts/IvyEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Editor/Scripts/IvyEditor.cs -------------------------------------------------------------------------------- /Editor/Scripts/IvyEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Editor/Scripts/IvyEditor.cs.meta -------------------------------------------------------------------------------- /Editor/Scripts/IvyMesh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Editor/Scripts/IvyMesh.cs -------------------------------------------------------------------------------- /Editor/Scripts/IvyMesh.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Editor/Scripts/IvyMesh.cs.meta -------------------------------------------------------------------------------- /Editor/Scripts/IvyProfileEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Editor/Scripts/IvyProfileEditor.cs -------------------------------------------------------------------------------- /Editor/Scripts/IvyProfileEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Editor/Scripts/IvyProfileEditor.cs.meta -------------------------------------------------------------------------------- /Editor/ThirdParty.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Editor/ThirdParty.meta -------------------------------------------------------------------------------- /Editor/ThirdParty/ObjExport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Editor/ThirdParty/ObjExport.cs -------------------------------------------------------------------------------- /Editor/ThirdParty/ObjExport.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Editor/ThirdParty/ObjExport.cs.meta -------------------------------------------------------------------------------- /Editor/ThirdParty/SimplifyCSharp.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Editor/ThirdParty/SimplifyCSharp.meta -------------------------------------------------------------------------------- /Editor/ThirdParty/SimplifyCSharp/BaseSimplifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Editor/ThirdParty/SimplifyCSharp/BaseSimplifier.cs -------------------------------------------------------------------------------- /Editor/ThirdParty/SimplifyCSharp/BaseSimplifier.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Editor/ThirdParty/SimplifyCSharp/BaseSimplifier.cs.meta -------------------------------------------------------------------------------- /Editor/ThirdParty/SimplifyCSharp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Editor/ThirdParty/SimplifyCSharp/LICENSE -------------------------------------------------------------------------------- /Editor/ThirdParty/SimplifyCSharp/LICENSE.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Editor/ThirdParty/SimplifyCSharp/LICENSE.meta -------------------------------------------------------------------------------- /Editor/ThirdParty/SimplifyCSharp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Editor/ThirdParty/SimplifyCSharp/README.md -------------------------------------------------------------------------------- /Editor/ThirdParty/SimplifyCSharp/README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Editor/ThirdParty/SimplifyCSharp/README.md.meta -------------------------------------------------------------------------------- /Editor/ThirdParty/SimplifyCSharp/SimplificationHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Editor/ThirdParty/SimplifyCSharp/SimplificationHelpers.cs -------------------------------------------------------------------------------- /Editor/ThirdParty/SimplifyCSharp/SimplificationHelpers.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Editor/ThirdParty/SimplifyCSharp/SimplificationHelpers.cs.meta -------------------------------------------------------------------------------- /Editor/ThirdParty/SimplifyCSharp/Simplifier2D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Editor/ThirdParty/SimplifyCSharp/Simplifier2D.cs -------------------------------------------------------------------------------- /Editor/ThirdParty/SimplifyCSharp/Simplifier2D.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Editor/ThirdParty/SimplifyCSharp/Simplifier2D.cs.meta -------------------------------------------------------------------------------- /Editor/ThirdParty/SimplifyCSharp/Simplifier3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Editor/ThirdParty/SimplifyCSharp/Simplifier3D.cs -------------------------------------------------------------------------------- /Editor/ThirdParty/SimplifyCSharp/Simplifier3D.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Editor/ThirdParty/SimplifyCSharp/Simplifier3D.cs.meta -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/LICENSE.md -------------------------------------------------------------------------------- /LICENSE.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/LICENSE.md.meta -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/README.md -------------------------------------------------------------------------------- /README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/README.md.meta -------------------------------------------------------------------------------- /Runtime.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Runtime.meta -------------------------------------------------------------------------------- /Runtime/EditorOnlyScripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Runtime/EditorOnlyScripts.meta -------------------------------------------------------------------------------- /Runtime/EditorOnlyScripts/IvyData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Runtime/EditorOnlyScripts/IvyData.cs -------------------------------------------------------------------------------- /Runtime/EditorOnlyScripts/IvyData.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Runtime/EditorOnlyScripts/IvyData.cs.meta -------------------------------------------------------------------------------- /Runtime/EditorOnlyScripts/IvyDataAsset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Runtime/EditorOnlyScripts/IvyDataAsset.cs -------------------------------------------------------------------------------- /Runtime/EditorOnlyScripts/IvyDataAsset.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Runtime/EditorOnlyScripts/IvyDataAsset.cs.meta -------------------------------------------------------------------------------- /Runtime/EditorOnlyScripts/IvyProfileAsset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Runtime/EditorOnlyScripts/IvyProfileAsset.cs -------------------------------------------------------------------------------- /Runtime/EditorOnlyScripts/IvyProfileAsset.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Runtime/EditorOnlyScripts/IvyProfileAsset.cs.meta -------------------------------------------------------------------------------- /Runtime/Hedera.Runtime.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Runtime/Hedera.Runtime.asmdef -------------------------------------------------------------------------------- /Runtime/Hedera.Runtime.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Runtime/Hedera.Runtime.asmdef.meta -------------------------------------------------------------------------------- /Runtime/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Runtime/Scripts.meta -------------------------------------------------------------------------------- /Runtime/Scripts/IvyBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Runtime/Scripts/IvyBehavior.cs -------------------------------------------------------------------------------- /Runtime/Scripts/IvyBehavior.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Runtime/Scripts/IvyBehavior.cs.meta -------------------------------------------------------------------------------- /Runtime/Shaders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Runtime/Shaders.meta -------------------------------------------------------------------------------- /Runtime/Shaders/HederaIvyFoliage.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Runtime/Shaders/HederaIvyFoliage.shader -------------------------------------------------------------------------------- /Runtime/Shaders/HederaIvyFoliage.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Runtime/Shaders/HederaIvyFoliage.shader.meta -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene.meta -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/ExampleIvyMeshExport.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/ExampleIvyMeshExport.obj -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/ExampleIvyMeshExport.obj.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/ExampleIvyMeshExport.obj.meta -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/HederaExampleScene.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/HederaExampleScene.meta -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/HederaExampleScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/HederaExampleScene.unity -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/HederaExampleScene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/HederaExampleScene.unity.meta -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/HederaExampleScene/HederaData.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/HederaExampleScene/HederaData.asset -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/HederaExampleScene/HederaData.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/HederaExampleScene/HederaData.asset.meta -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/HederaExampleScene/LightingData.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/HederaExampleScene/LightingData.asset -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/HederaExampleScene/LightingData.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/HederaExampleScene/LightingData.asset.meta -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/HederaExampleScene/ReflectionProbe-0.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/HederaExampleScene/ReflectionProbe-0.exr -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/HederaExampleScene/ReflectionProbe-0.exr.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/HederaExampleScene/ReflectionProbe-0.exr.meta -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/IvyProfiles.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/IvyProfiles.meta -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/IvyProfiles/IvyProfile_CableWire.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/IvyProfiles/IvyProfile_CableWire.asset -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/IvyProfiles/IvyProfile_CableWire.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/IvyProfiles/IvyProfile_CableWire.asset.meta -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/IvyProfiles/IvyProfile_Cartoon.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/IvyProfiles/IvyProfile_Cartoon.asset -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/IvyProfiles/IvyProfile_Cartoon.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/IvyProfiles/IvyProfile_Cartoon.asset.meta -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/IvyProfiles/IvyProfile_CartoonRainbow.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/IvyProfiles/IvyProfile_CartoonRainbow.asset -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/IvyProfiles/IvyProfile_CartoonRainbow.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/IvyProfiles/IvyProfile_CartoonRainbow.asset.meta -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/IvyProfiles/IvyProfile_Realistic.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/IvyProfiles/IvyProfile_Realistic.asset -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/IvyProfiles/IvyProfile_Realistic.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/IvyProfiles/IvyProfile_Realistic.asset.meta -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/IvyProfiles/IvyProfile_RealisticAutumn.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/IvyProfiles/IvyProfile_RealisticAutumn.asset -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/IvyProfiles/IvyProfile_RealisticAutumn.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/IvyProfiles/IvyProfile_RealisticAutumn.asset.meta -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/Materials.meta -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/Materials/IvyBranchCable.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/Materials/IvyBranchCable.mat -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/Materials/IvyBranchCable.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/Materials/IvyBranchCable.mat.meta -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/Materials/IvyBranchCartoon.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/Materials/IvyBranchCartoon.mat -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/Materials/IvyBranchCartoon.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/Materials/IvyBranchCartoon.mat.meta -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/Materials/IvyBranchWood.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/Materials/IvyBranchWood.mat -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/Materials/IvyBranchWood.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/Materials/IvyBranchWood.mat.meta -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/Materials/IvyLeafCartoon.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/Materials/IvyLeafCartoon.mat -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/Materials/IvyLeafCartoon.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/Materials/IvyLeafCartoon.mat.meta -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/Materials/IvyLeafDead.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/Materials/IvyLeafDead.mat -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/Materials/IvyLeafDead.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/Materials/IvyLeafDead.mat.meta -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/Materials/IvyLeafMature.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/Materials/IvyLeafMature.mat -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/Materials/IvyLeafMature.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/Materials/IvyLeafMature.mat.meta -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/Materials/IvyLeafYoung.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/Materials/IvyLeafYoung.mat -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/Materials/IvyLeafYoung.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/Materials/IvyLeafYoung.mat.meta -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/Scripts.meta -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/Scripts/OpenHederaExampleScene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/Scripts/OpenHederaExampleScene.cs -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/Scripts/OpenHederaExampleScene.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/Scripts/OpenHederaExampleScene.cs.meta -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/Textures.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/Textures.meta -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/Textures/IvyBranchWood_Diffuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/Textures/IvyBranchWood_Diffuse.png -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/Textures/IvyBranchWood_Diffuse.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/Textures/IvyBranchWood_Diffuse.png.meta -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/Textures/IvyBranchWood_Height.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/Textures/IvyBranchWood_Height.jpg -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/Textures/IvyBranchWood_Height.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/Textures/IvyBranchWood_Height.jpg.meta -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/Textures/IvyBranchWood_Normal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/Textures/IvyBranchWood_Normal.jpg -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/Textures/IvyBranchWood_Normal.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/Textures/IvyBranchWood_Normal.jpg.meta -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/Textures/IvyBranchWood_Roughness.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/Textures/IvyBranchWood_Roughness.jpg -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/Textures/IvyBranchWood_Roughness.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/Textures/IvyBranchWood_Roughness.jpg.meta -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/Textures/IvyLeafDead1_Alpha.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/Textures/IvyLeafDead1_Alpha.jpg -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/Textures/IvyLeafDead1_Alpha.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/Textures/IvyLeafDead1_Alpha.jpg.meta -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/Textures/IvyLeafDead1_Diffuse.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/Textures/IvyLeafDead1_Diffuse.tga -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/Textures/IvyLeafDead1_Diffuse.tga.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/Textures/IvyLeafDead1_Diffuse.tga.meta -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/Textures/IvyLeafDead2_Alpha.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/Textures/IvyLeafDead2_Alpha.jpg -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/Textures/IvyLeafDead2_Alpha.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/Textures/IvyLeafDead2_Alpha.jpg.meta -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/Textures/IvyLeafDead2_Diffuse.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/Textures/IvyLeafDead2_Diffuse.tga -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/Textures/IvyLeafDead2_Diffuse.tga.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/Textures/IvyLeafDead2_Diffuse.tga.meta -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/Textures/IvyLeafMature_Alpha.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/Textures/IvyLeafMature_Alpha.jpg -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/Textures/IvyLeafMature_Alpha.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/Textures/IvyLeafMature_Alpha.jpg.meta -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/Textures/IvyLeafMature_Diffuse.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/Textures/IvyLeafMature_Diffuse.tga -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/Textures/IvyLeafMature_Diffuse.tga.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/Textures/IvyLeafMature_Diffuse.tga.meta -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/Textures/IvyLeafMature_Normal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/Textures/IvyLeafMature_Normal.jpg -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/Textures/IvyLeafMature_Normal.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/Textures/IvyLeafMature_Normal.jpg.meta -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/Textures/IvyLeafMature_Roughness.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/Textures/IvyLeafMature_Roughness.jpg -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/Textures/IvyLeafMature_Roughness.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/Textures/IvyLeafMature_Roughness.jpg.meta -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/Textures/IvyLeafMature_Roughness_Lighter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/Textures/IvyLeafMature_Roughness_Lighter.png -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/Textures/IvyLeafMature_Roughness_Lighter.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/Textures/IvyLeafMature_Roughness_Lighter.png.meta -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/Textures/IvyLeafMature_Translucence.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/Textures/IvyLeafMature_Translucence.jpg -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/Textures/IvyLeafMature_Translucence.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/Textures/IvyLeafMature_Translucence.jpg.meta -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/Textures/IvyLeafYoung_Alpha.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/Textures/IvyLeafYoung_Alpha.jpg -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/Textures/IvyLeafYoung_Alpha.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/Textures/IvyLeafYoung_Alpha.jpg.meta -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/Textures/IvyLeafYoung_Diffuse.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/Textures/IvyLeafYoung_Diffuse.tga -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/Textures/IvyLeafYoung_Diffuse.tga.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/Textures/IvyLeafYoung_Diffuse.tga.meta -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/Textures/IvyLeafYoung_Height.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/Textures/IvyLeafYoung_Height.jpg -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/Textures/IvyLeafYoung_Height.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/Textures/IvyLeafYoung_Height.jpg.meta -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/Textures/IvyLeafYoung_Normal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/Textures/IvyLeafYoung_Normal.jpg -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/Textures/IvyLeafYoung_Normal.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/Textures/IvyLeafYoung_Normal.jpg.meta -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/Textures/IvyLeafYoung_Roughness.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/Textures/IvyLeafYoung_Roughness.jpg -------------------------------------------------------------------------------- /Samples~/ExampleIvyScene/Textures/IvyLeafYoung_Roughness.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/Samples~/ExampleIvyScene/Textures/IvyLeafYoung_Roughness.jpg.meta -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/package.json -------------------------------------------------------------------------------- /package.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radiatoryang/hedera/HEAD/package.json.meta --------------------------------------------------------------------------------