Compare commits
8 Commits
develop
...
78bfdf2828
| Author | SHA1 | Date | |
|---|---|---|---|
| 78bfdf2828 | |||
| 0052b0d98e | |||
| 3657b870d8 | |||
| f47baf957e | |||
| 5c64210a3f | |||
| c9e923975d | |||
| f5de33eac2 | |||
| faa061cced |
@@ -171,14 +171,28 @@ World objects (pickables, harvestables) are **not** NetworkObjects. They use the
|
|||||||
owns a synced set of inactive ids + server-side authority (health, loot, drops) via RPC.
|
owns a synced set of inactive ids + server-side authority (health, loot, drops) via RPC.
|
||||||
Add new harvestable/pickable-like world state here, not as per-object NetworkObjects.
|
Add new harvestable/pickable-like world state here, not as per-object NetworkObjects.
|
||||||
`ItemData` cannot cross the wire — map items to ids through `ItemDatabase`
|
`ItemData` cannot cross the wire — map items to ids through `ItemDatabase`
|
||||||
(**Tools ▸ Ashwild ▸ Rebuild Item Database** after adding items). `BuildRegistry` +
|
(**Tools ▸ Ashwild ▸ Rebuild Item Database** after adding items).
|
||||||
`BuildableDatabase` mirror this for placed structures (which also accumulate to high counts).
|
|
||||||
|
|
||||||
This "no NetworkObjects" rule targets **high-count** world state (thousands of scatter objects,
|
**Placed structures are the deliberate exception — they ARE NetworkObjects.** `BuildRegistry` spawns
|
||||||
hundreds of builds) — making those NetworkObjects would flood the network. It is **not** absolute:
|
every committed build server-side (`ServerManager.Spawn`) and each one carries its own state on its
|
||||||
a **transient, low-count** object that moves and needs smooth replication — the build ghost, one
|
own `BuiltStructure`. This used to be a data registry (a `SyncList` of pose records each client
|
||||||
per player — is the case where a real **NetworkObject + client-authoritative NetworkTransform**
|
instantiated locally), and it was changed on purpose: the records never saved the GameObjects — those
|
||||||
is the better tool, and `BuildRegistry` spawns it as such. Pick by count and lifetime, not dogma.
|
were instantiated locally anyway, so memory, colliders and draw calls were identical — they only saved
|
||||||
|
FishNet's per-object bookkeeping, and they forced a **second, incompatible mechanism** for any build
|
||||||
|
with real state (chests, cooking stations). One mechanism for walls, chests and campfires alike is
|
||||||
|
worth the bookkeeping at co-op base scale. Buildables still cross the wire as ids through
|
||||||
|
`BuildableDatabase`.
|
||||||
|
|
||||||
|
This "no NetworkObjects" rule targets genuinely **high-count, stateless** world state — the thousands
|
||||||
|
of scatter objects — where a per-object NetworkObject buys nothing. It is **not** a blanket ban, and
|
||||||
|
two cases deliberately go the other way:
|
||||||
|
|
||||||
|
- **Placed structures** (hundreds, and many of them stateful) — server-spawned NetworkObjects, see above.
|
||||||
|
- **The build ghost** (transient, one per player, moves every frame) — a NetworkObject with a
|
||||||
|
client-authoritative NetworkTransform, spawned by `BuildRegistry`.
|
||||||
|
|
||||||
|
Pick by **state and count together**, not by count alone: the moment an object needs its own
|
||||||
|
replicated state, a data registry means hand-rolling what FishNet already does per object.
|
||||||
|
|
||||||
### Shared interactables (cooking stations, future chests/benches)
|
### Shared interactables (cooking stations, future chests/benches)
|
||||||
|
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 8.3 KiB |
|
Before Width: | Height: | Size: 2.5 KiB |
|
Before Width: | Height: | Size: 276 KiB |
|
Before Width: | Height: | Size: 7.7 KiB |
|
Before Width: | Height: | Size: 3.4 KiB |
@@ -1,121 +0,0 @@
|
|||||||
fileFormatVersion: 2
|
|
||||||
guid: 2843fac255f79e54b92d402150cb36d3
|
|
||||||
TextureImporter:
|
|
||||||
internalIDToNameTable: []
|
|
||||||
externalObjects: {}
|
|
||||||
serializedVersion: 13
|
|
||||||
mipmaps:
|
|
||||||
mipMapMode: 0
|
|
||||||
enableMipMap: 1
|
|
||||||
sRGBTexture: 1
|
|
||||||
linearTexture: 0
|
|
||||||
fadeOut: 0
|
|
||||||
borderMipMap: 0
|
|
||||||
mipMapsPreserveCoverage: 0
|
|
||||||
alphaTestReferenceValue: 0.5
|
|
||||||
mipMapFadeDistanceStart: 1
|
|
||||||
mipMapFadeDistanceEnd: 3
|
|
||||||
bumpmap:
|
|
||||||
convertToNormalMap: 0
|
|
||||||
externalNormalMap: 0
|
|
||||||
heightScale: 0.25
|
|
||||||
normalMapFilter: 0
|
|
||||||
flipGreenChannel: 0
|
|
||||||
isReadable: 0
|
|
||||||
streamingMipmaps: 0
|
|
||||||
streamingMipmapsPriority: 0
|
|
||||||
vTOnly: 0
|
|
||||||
ignoreMipmapLimit: 0
|
|
||||||
grayScaleToAlpha: 0
|
|
||||||
generateCubemap: 6
|
|
||||||
cubemapConvolution: 0
|
|
||||||
seamlessCubemap: 0
|
|
||||||
textureFormat: 1
|
|
||||||
maxTextureSize: 2048
|
|
||||||
textureSettings:
|
|
||||||
serializedVersion: 2
|
|
||||||
filterMode: 1
|
|
||||||
aniso: 1
|
|
||||||
mipBias: 0
|
|
||||||
wrapU: 0
|
|
||||||
wrapV: 0
|
|
||||||
wrapW: 0
|
|
||||||
nPOTScale: 1
|
|
||||||
lightmap: 0
|
|
||||||
compressionQuality: 50
|
|
||||||
spriteMode: 0
|
|
||||||
spriteExtrude: 1
|
|
||||||
spriteMeshType: 1
|
|
||||||
alignment: 0
|
|
||||||
spritePivot: {x: 0.5, y: 0.5}
|
|
||||||
spritePixelsToUnits: 100
|
|
||||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
|
||||||
spriteGenerateFallbackPhysicsShape: 1
|
|
||||||
alphaUsage: 1
|
|
||||||
alphaIsTransparency: 1
|
|
||||||
spriteTessellationDetail: -1
|
|
||||||
textureType: 0
|
|
||||||
textureShape: 1
|
|
||||||
singleChannelComponent: 0
|
|
||||||
flipbookRows: 1
|
|
||||||
flipbookColumns: 1
|
|
||||||
maxTextureSizeSet: 0
|
|
||||||
compressionQualitySet: 0
|
|
||||||
textureFormatSet: 0
|
|
||||||
ignorePngGamma: 0
|
|
||||||
applyGammaDecoding: 0
|
|
||||||
swizzle: 50462976
|
|
||||||
cookieLightType: 0
|
|
||||||
platformSettings:
|
|
||||||
- serializedVersion: 3
|
|
||||||
buildTarget: DefaultTexturePlatform
|
|
||||||
maxTextureSize: 2048
|
|
||||||
resizeAlgorithm: 0
|
|
||||||
textureFormat: -1
|
|
||||||
textureCompression: 1
|
|
||||||
compressionQuality: 50
|
|
||||||
crunchedCompression: 0
|
|
||||||
allowsAlphaSplitting: 0
|
|
||||||
overridden: 0
|
|
||||||
ignorePlatformSupport: 0
|
|
||||||
androidETC2FallbackOverride: 0
|
|
||||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
||||||
- serializedVersion: 3
|
|
||||||
buildTarget: Standalone
|
|
||||||
maxTextureSize: 2048
|
|
||||||
resizeAlgorithm: 0
|
|
||||||
textureFormat: -1
|
|
||||||
textureCompression: 1
|
|
||||||
compressionQuality: 50
|
|
||||||
crunchedCompression: 0
|
|
||||||
allowsAlphaSplitting: 0
|
|
||||||
overridden: 0
|
|
||||||
ignorePlatformSupport: 0
|
|
||||||
androidETC2FallbackOverride: 0
|
|
||||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
||||||
spriteSheet:
|
|
||||||
serializedVersion: 2
|
|
||||||
sprites: []
|
|
||||||
outline: []
|
|
||||||
physicsShape: []
|
|
||||||
bones: []
|
|
||||||
spriteID:
|
|
||||||
internalID: 0
|
|
||||||
vertices: []
|
|
||||||
indices:
|
|
||||||
edges: []
|
|
||||||
weights: []
|
|
||||||
secondaryTextures: []
|
|
||||||
nameFileIdTable: {}
|
|
||||||
mipmapLimitGroupName:
|
|
||||||
pSDRemoveMatte: 0
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
||||||
AssetOrigin:
|
|
||||||
serializedVersion: 1
|
|
||||||
productId: 278975
|
|
||||||
packageName: 'COZY Pro: Stylized Weather Bundle'
|
|
||||||
packageVersion: 3.6.4
|
|
||||||
assetPath: Assets/Distant Lands/COZY Pro/Editor/Resources/Eclipse.png
|
|
||||||
uploadId: 783565
|
|
||||||
|
Before Width: | Height: | Size: 5.1 KiB |
|
Before Width: | Height: | Size: 1.9 KiB |
@@ -1,121 +0,0 @@
|
|||||||
fileFormatVersion: 2
|
|
||||||
guid: 0e5b76078ce5c6840998d2b3b83a0e36
|
|
||||||
TextureImporter:
|
|
||||||
internalIDToNameTable: []
|
|
||||||
externalObjects: {}
|
|
||||||
serializedVersion: 13
|
|
||||||
mipmaps:
|
|
||||||
mipMapMode: 0
|
|
||||||
enableMipMap: 1
|
|
||||||
sRGBTexture: 1
|
|
||||||
linearTexture: 0
|
|
||||||
fadeOut: 0
|
|
||||||
borderMipMap: 0
|
|
||||||
mipMapsPreserveCoverage: 0
|
|
||||||
alphaTestReferenceValue: 0.5
|
|
||||||
mipMapFadeDistanceStart: 1
|
|
||||||
mipMapFadeDistanceEnd: 3
|
|
||||||
bumpmap:
|
|
||||||
convertToNormalMap: 0
|
|
||||||
externalNormalMap: 0
|
|
||||||
heightScale: 0.25
|
|
||||||
normalMapFilter: 0
|
|
||||||
flipGreenChannel: 0
|
|
||||||
isReadable: 0
|
|
||||||
streamingMipmaps: 0
|
|
||||||
streamingMipmapsPriority: 0
|
|
||||||
vTOnly: 0
|
|
||||||
ignoreMipmapLimit: 0
|
|
||||||
grayScaleToAlpha: 0
|
|
||||||
generateCubemap: 6
|
|
||||||
cubemapConvolution: 0
|
|
||||||
seamlessCubemap: 0
|
|
||||||
textureFormat: 1
|
|
||||||
maxTextureSize: 2048
|
|
||||||
textureSettings:
|
|
||||||
serializedVersion: 2
|
|
||||||
filterMode: 1
|
|
||||||
aniso: 1
|
|
||||||
mipBias: 0
|
|
||||||
wrapU: 0
|
|
||||||
wrapV: 0
|
|
||||||
wrapW: 0
|
|
||||||
nPOTScale: 1
|
|
||||||
lightmap: 0
|
|
||||||
compressionQuality: 50
|
|
||||||
spriteMode: 0
|
|
||||||
spriteExtrude: 1
|
|
||||||
spriteMeshType: 1
|
|
||||||
alignment: 0
|
|
||||||
spritePivot: {x: 0.5, y: 0.5}
|
|
||||||
spritePixelsToUnits: 100
|
|
||||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
|
||||||
spriteGenerateFallbackPhysicsShape: 1
|
|
||||||
alphaUsage: 1
|
|
||||||
alphaIsTransparency: 1
|
|
||||||
spriteTessellationDetail: -1
|
|
||||||
textureType: 0
|
|
||||||
textureShape: 1
|
|
||||||
singleChannelComponent: 0
|
|
||||||
flipbookRows: 1
|
|
||||||
flipbookColumns: 1
|
|
||||||
maxTextureSizeSet: 0
|
|
||||||
compressionQualitySet: 0
|
|
||||||
textureFormatSet: 0
|
|
||||||
ignorePngGamma: 0
|
|
||||||
applyGammaDecoding: 0
|
|
||||||
swizzle: 50462976
|
|
||||||
cookieLightType: 0
|
|
||||||
platformSettings:
|
|
||||||
- serializedVersion: 3
|
|
||||||
buildTarget: DefaultTexturePlatform
|
|
||||||
maxTextureSize: 2048
|
|
||||||
resizeAlgorithm: 0
|
|
||||||
textureFormat: -1
|
|
||||||
textureCompression: 1
|
|
||||||
compressionQuality: 50
|
|
||||||
crunchedCompression: 0
|
|
||||||
allowsAlphaSplitting: 0
|
|
||||||
overridden: 0
|
|
||||||
ignorePlatformSupport: 0
|
|
||||||
androidETC2FallbackOverride: 0
|
|
||||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
||||||
- serializedVersion: 3
|
|
||||||
buildTarget: Standalone
|
|
||||||
maxTextureSize: 2048
|
|
||||||
resizeAlgorithm: 0
|
|
||||||
textureFormat: -1
|
|
||||||
textureCompression: 1
|
|
||||||
compressionQuality: 50
|
|
||||||
crunchedCompression: 0
|
|
||||||
allowsAlphaSplitting: 0
|
|
||||||
overridden: 0
|
|
||||||
ignorePlatformSupport: 0
|
|
||||||
androidETC2FallbackOverride: 0
|
|
||||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
||||||
spriteSheet:
|
|
||||||
serializedVersion: 2
|
|
||||||
sprites: []
|
|
||||||
outline: []
|
|
||||||
physicsShape: []
|
|
||||||
bones: []
|
|
||||||
spriteID:
|
|
||||||
internalID: 0
|
|
||||||
vertices: []
|
|
||||||
indices:
|
|
||||||
edges: []
|
|
||||||
weights: []
|
|
||||||
secondaryTextures: []
|
|
||||||
nameFileIdTable: {}
|
|
||||||
mipmapLimitGroupName:
|
|
||||||
pSDRemoveMatte: 0
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
||||||
AssetOrigin:
|
|
||||||
serializedVersion: 1
|
|
||||||
productId: 278975
|
|
||||||
packageName: 'COZY Pro: Stylized Weather Bundle'
|
|
||||||
packageVersion: 3.6.4
|
|
||||||
assetPath: Assets/Distant Lands/COZY Pro/Editor/Resources/Horizon.png
|
|
||||||
uploadId: 783565
|
|
||||||
|
Before Width: | Height: | Size: 6.9 KiB |
|
Before Width: | Height: | Size: 3.1 KiB |
|
Before Width: | Height: | Size: 4.3 KiB |
@@ -1,121 +0,0 @@
|
|||||||
fileFormatVersion: 2
|
|
||||||
guid: e34a3ea83cc6485478cbe3a2116865e1
|
|
||||||
TextureImporter:
|
|
||||||
internalIDToNameTable: []
|
|
||||||
externalObjects: {}
|
|
||||||
serializedVersion: 13
|
|
||||||
mipmaps:
|
|
||||||
mipMapMode: 0
|
|
||||||
enableMipMap: 1
|
|
||||||
sRGBTexture: 1
|
|
||||||
linearTexture: 0
|
|
||||||
fadeOut: 0
|
|
||||||
borderMipMap: 0
|
|
||||||
mipMapsPreserveCoverage: 0
|
|
||||||
alphaTestReferenceValue: 0.5
|
|
||||||
mipMapFadeDistanceStart: 1
|
|
||||||
mipMapFadeDistanceEnd: 3
|
|
||||||
bumpmap:
|
|
||||||
convertToNormalMap: 0
|
|
||||||
externalNormalMap: 0
|
|
||||||
heightScale: 0.25
|
|
||||||
normalMapFilter: 0
|
|
||||||
flipGreenChannel: 0
|
|
||||||
isReadable: 0
|
|
||||||
streamingMipmaps: 0
|
|
||||||
streamingMipmapsPriority: 0
|
|
||||||
vTOnly: 0
|
|
||||||
ignoreMipmapLimit: 0
|
|
||||||
grayScaleToAlpha: 0
|
|
||||||
generateCubemap: 6
|
|
||||||
cubemapConvolution: 0
|
|
||||||
seamlessCubemap: 0
|
|
||||||
textureFormat: 1
|
|
||||||
maxTextureSize: 2048
|
|
||||||
textureSettings:
|
|
||||||
serializedVersion: 2
|
|
||||||
filterMode: 1
|
|
||||||
aniso: 1
|
|
||||||
mipBias: 0
|
|
||||||
wrapU: 0
|
|
||||||
wrapV: 0
|
|
||||||
wrapW: 0
|
|
||||||
nPOTScale: 1
|
|
||||||
lightmap: 0
|
|
||||||
compressionQuality: 50
|
|
||||||
spriteMode: 0
|
|
||||||
spriteExtrude: 1
|
|
||||||
spriteMeshType: 1
|
|
||||||
alignment: 0
|
|
||||||
spritePivot: {x: 0.5, y: 0.5}
|
|
||||||
spritePixelsToUnits: 100
|
|
||||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
|
||||||
spriteGenerateFallbackPhysicsShape: 1
|
|
||||||
alphaUsage: 1
|
|
||||||
alphaIsTransparency: 1
|
|
||||||
spriteTessellationDetail: -1
|
|
||||||
textureType: 0
|
|
||||||
textureShape: 1
|
|
||||||
singleChannelComponent: 0
|
|
||||||
flipbookRows: 1
|
|
||||||
flipbookColumns: 1
|
|
||||||
maxTextureSizeSet: 0
|
|
||||||
compressionQualitySet: 0
|
|
||||||
textureFormatSet: 0
|
|
||||||
ignorePngGamma: 0
|
|
||||||
applyGammaDecoding: 0
|
|
||||||
swizzle: 50462976
|
|
||||||
cookieLightType: 0
|
|
||||||
platformSettings:
|
|
||||||
- serializedVersion: 3
|
|
||||||
buildTarget: DefaultTexturePlatform
|
|
||||||
maxTextureSize: 2048
|
|
||||||
resizeAlgorithm: 0
|
|
||||||
textureFormat: -1
|
|
||||||
textureCompression: 1
|
|
||||||
compressionQuality: 50
|
|
||||||
crunchedCompression: 0
|
|
||||||
allowsAlphaSplitting: 0
|
|
||||||
overridden: 0
|
|
||||||
ignorePlatformSupport: 0
|
|
||||||
androidETC2FallbackOverride: 0
|
|
||||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
||||||
- serializedVersion: 3
|
|
||||||
buildTarget: Standalone
|
|
||||||
maxTextureSize: 2048
|
|
||||||
resizeAlgorithm: 0
|
|
||||||
textureFormat: -1
|
|
||||||
textureCompression: 1
|
|
||||||
compressionQuality: 50
|
|
||||||
crunchedCompression: 0
|
|
||||||
allowsAlphaSplitting: 0
|
|
||||||
overridden: 0
|
|
||||||
ignorePlatformSupport: 0
|
|
||||||
androidETC2FallbackOverride: 0
|
|
||||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
|
||||||
spriteSheet:
|
|
||||||
serializedVersion: 2
|
|
||||||
sprites: []
|
|
||||||
outline: []
|
|
||||||
physicsShape: []
|
|
||||||
bones: []
|
|
||||||
spriteID:
|
|
||||||
internalID: 0
|
|
||||||
vertices: []
|
|
||||||
indices:
|
|
||||||
edges: []
|
|
||||||
weights: []
|
|
||||||
secondaryTextures: []
|
|
||||||
nameFileIdTable: {}
|
|
||||||
mipmapLimitGroupName:
|
|
||||||
pSDRemoveMatte: 0
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
||||||
AssetOrigin:
|
|
||||||
serializedVersion: 1
|
|
||||||
productId: 278975
|
|
||||||
packageName: 'COZY Pro: Stylized Weather Bundle'
|
|
||||||
packageVersion: 3.6.4
|
|
||||||
assetPath: Assets/Distant Lands/COZY Pro/Editor/Resources/ReSound.png
|
|
||||||
uploadId: 783565
|
|
||||||
@@ -1,97 +0,0 @@
|
|||||||
using UnityEditor;
|
|
||||||
using UnityEngine;
|
|
||||||
using UnityEngine.UIElements;
|
|
||||||
|
|
||||||
[InitializeOnLoad]
|
|
||||||
public class WelcomeWindow : EditorWindow
|
|
||||||
{
|
|
||||||
private const string CozyWelcomeWindowKey = "COZY3_WelcomeWindowShown";
|
|
||||||
|
|
||||||
VisualElement root;
|
|
||||||
VisualElement ModuleGrid => root.Q<VisualElement>("module-grid");
|
|
||||||
|
|
||||||
// Static constructor to run on editor load
|
|
||||||
static WelcomeWindow()
|
|
||||||
{
|
|
||||||
// Only show if not already shown
|
|
||||||
if (!EditorPrefs.GetBool(CozyWelcomeWindowKey, false))
|
|
||||||
{
|
|
||||||
// Delay call to ensure Unity is ready
|
|
||||||
EditorApplication.update += ShowOnFirstImport;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private static void ShowOnFirstImport()
|
|
||||||
{
|
|
||||||
EditorApplication.update -= ShowOnFirstImport;
|
|
||||||
ShowExample();
|
|
||||||
EditorPrefs.SetBool(CozyWelcomeWindowKey, true);
|
|
||||||
}
|
|
||||||
[SerializeField]
|
|
||||||
private VisualTreeAsset m_VisualTreeAsset = default;
|
|
||||||
|
|
||||||
[MenuItem("Tools/Cozy: Stylized Weather 3/Welcome to COZY Pro")]
|
|
||||||
public static void ShowExample()
|
|
||||||
{
|
|
||||||
WelcomeWindow wnd = GetWindow<WelcomeWindow>();
|
|
||||||
wnd.titleContent = new GUIContent("Welcome to COZY Pro");
|
|
||||||
wnd.Show();
|
|
||||||
}
|
|
||||||
|
|
||||||
public void CreateGUI()
|
|
||||||
{
|
|
||||||
root = rootVisualElement;
|
|
||||||
m_VisualTreeAsset.CloneTree(root);
|
|
||||||
|
|
||||||
ModuleGrid.Add(ModuleRow("COZY Core", "Get started in seconds with the base COZY package. Required for all other modules.", "https://assetstore.unity.com/packages/tools/utilities/cozy-stylized-weather-3-271742?aid=1011luj9X", "https://github.com/DistantLandsProductions/com.distantlands.cozy.core"));
|
|
||||||
ModuleGrid.Add(ModuleRow("Plume", "Add billowing volumetric clouds to your scene.", "https://assetstore.unity.com/packages/tools/particles-effects/cozy-plume-volumetric-clouds-module-243905?aid=1011luj9X", "https://github.com/DistantLandsProductions/com.distantlands.cozy.plume"));
|
|
||||||
ModuleGrid.Add(ModuleRow("Blocks", "Add additional control options for atmospheres.", "https://assetstore.unity.com/packages/tools/utilities/cozy-blocks-preset-based-atmosphere-module-238051?aid=1011luj9X", "https://github.com/DistantLandsProductions/com.distantlands.cozy.blocks"));
|
|
||||||
ModuleGrid.Add(ModuleRow("Habits", "Extend calendar and event control with a visual calendar.", "https://assetstore.unity.com/packages/tools/utilities/cozy-habits-extended-calendar-module-259983?aid=1011luj9X", "https://github.com/DistantLandsProductions/com.distantlands.cozy.habits"));
|
|
||||||
ModuleGrid.Add(ModuleRow("ReSound", "Control a dynamic soundtrack engine.", "https://assetstore.unity.com/packages/tools/audio/cozy-resound-adaptive-soundtrack-module-278334?aid=1011luj9X", "https://github.com/DistantLandsProductions/com.distantlands.cozy.resound"));
|
|
||||||
ModuleGrid.Add(ModuleRow("Eclipse", "Add dynamic solar eclipses to your world.", "https://assetstore.unity.com/packages/vfx/shaders/cozy-eclipse-sun-occlusion-module-277785?aid=1011luj9X", "https://github.com/DistantLandsProductions/com.distantlands.cozy.eclipse"));
|
|
||||||
ModuleGrid.Add(ModuleRow("Horizon", "Textural skybox layers that dynamically adjust to your atmosphere.", "https://assetstore.unity.com/packages/vfx/shaders/cozy-horizon-sky-layers-module-307494?aid=1011luj9X", "https://github.com/DistantLandsProductions/com.distantlands.cozy.horizon"));
|
|
||||||
ModuleGrid.Add(ModuleRow("Link", "Control COZY across multiplayer instances.", "https://assetstore.unity.com/packages/tools/network/cozy-link-multiplayer-module-238669?aid=1011luj9X", "https://github.com/DistantLandsProductions/com.distantlands.cozy.link"));
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
public VisualElement ModuleRow(string extensionTitle, string description, string downloadURL, string githubURL)
|
|
||||||
{
|
|
||||||
VisualElement row = new VisualElement();
|
|
||||||
row.AddToClassList("module-row");
|
|
||||||
|
|
||||||
VisualElement icon = new VisualElement();
|
|
||||||
icon.AddToClassList("icon");
|
|
||||||
icon.style.backgroundImage = Resources.Load(extensionTitle) as Texture2D;
|
|
||||||
row.Add(icon);
|
|
||||||
|
|
||||||
VisualElement content = new VisualElement();
|
|
||||||
row.Add(content);
|
|
||||||
|
|
||||||
Label title = new Label(extensionTitle);
|
|
||||||
title.name = "title";
|
|
||||||
content.Add(title);
|
|
||||||
|
|
||||||
Label desc = new Label(description);
|
|
||||||
desc.name = "desc";
|
|
||||||
content.Add(desc);
|
|
||||||
|
|
||||||
VisualElement buttonRow = new VisualElement();
|
|
||||||
buttonRow.name = "btn-row";
|
|
||||||
content.Add(buttonRow);
|
|
||||||
|
|
||||||
Button UAS = new Button(() => Application.OpenURL(downloadURL));
|
|
||||||
UAS.text = "Download";
|
|
||||||
UAS.AddToClassList("btn");
|
|
||||||
UAS.AddToClassList("primary");
|
|
||||||
buttonRow.Add(UAS);
|
|
||||||
|
|
||||||
Button GitHub = new Button(() => Application.OpenURL(githubURL));
|
|
||||||
GitHub.text = "GitHub";
|
|
||||||
GitHub.AddToClassList("btn");
|
|
||||||
buttonRow.Add(GitHub);
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
return row;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
fileFormatVersion: 2
|
|
||||||
guid: 1e482a27533326643ae03845bc1b794d
|
|
||||||
MonoImporter:
|
|
||||||
externalObjects: {}
|
|
||||||
serializedVersion: 2
|
|
||||||
defaultReferences:
|
|
||||||
- m_ViewDataDictionary: {instanceID: 0}
|
|
||||||
- m_VisualTreeAsset: {fileID: 9197481963319205126, guid: 0ee0148430d853a4baa06185c970ec0a,
|
|
||||||
type: 3}
|
|
||||||
executionOrder: 0
|
|
||||||
icon: {instanceID: 0}
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
||||||
AssetOrigin:
|
|
||||||
serializedVersion: 1
|
|
||||||
productId: 278975
|
|
||||||
packageName: 'COZY Pro: Stylized Weather Bundle'
|
|
||||||
packageVersion: 3.6.4
|
|
||||||
assetPath: Assets/Distant Lands/COZY Pro/Editor/WelcomeWindow.cs
|
|
||||||
uploadId: 783565
|
|
||||||
@@ -1,107 +0,0 @@
|
|||||||
.banner {
|
|
||||||
background-image: resource('Cozy Weather');
|
|
||||||
height: 80px;
|
|
||||||
-unity-background-scale-mode: scale-and-crop;
|
|
||||||
justify-content: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.banner Label {
|
|
||||||
-unity-text-align: upper-center;
|
|
||||||
-unity-font-style: bold;
|
|
||||||
font-size: 16px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.h1 {
|
|
||||||
font-size: 18px;
|
|
||||||
-unity-font-style: bold;
|
|
||||||
margin-top: 8px;
|
|
||||||
margin-bottom: 16px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.p {
|
|
||||||
flex-wrap: wrap;
|
|
||||||
max-width: 100%;
|
|
||||||
white-space: normal;
|
|
||||||
margin-bottom: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.icon {
|
|
||||||
width: 35px;
|
|
||||||
height: 35px;
|
|
||||||
margin-top: 15px;
|
|
||||||
margin-right: 15px;
|
|
||||||
margin-bottom: 15px;
|
|
||||||
margin-left: 15px;
|
|
||||||
flex-shrink: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.module-row {
|
|
||||||
flex-direction: row;
|
|
||||||
margin-top: 5px;
|
|
||||||
margin-bottom: 15px;
|
|
||||||
flex-shrink: 0;
|
|
||||||
flex-grow: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.module-grid {
|
|
||||||
margin-top: 10px;
|
|
||||||
margin-bottom: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.module-row #title {
|
|
||||||
-unity-font-style: bold;
|
|
||||||
font-size: 15px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.module-row #desc {
|
|
||||||
white-space: normal;
|
|
||||||
}
|
|
||||||
|
|
||||||
.module-row #btn-row {
|
|
||||||
flex-direction: row;
|
|
||||||
margin-top: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn {
|
|
||||||
border-top-left-radius: 13px;
|
|
||||||
border-top-right-radius: 13px;
|
|
||||||
border-bottom-right-radius: 13px;
|
|
||||||
border-bottom-left-radius: 13px;
|
|
||||||
border-left-color: rgba(255, 255, 255, 0);
|
|
||||||
border-right-color: rgba(255, 255, 255, 0);
|
|
||||||
border-top-color: rgba(255, 255, 255, 0);
|
|
||||||
border-bottom-color: rgba(255, 255, 255, 0);
|
|
||||||
border-top-width: 1px;
|
|
||||||
border-right-width: 1px;
|
|
||||||
border-bottom-width: 1px;
|
|
||||||
border-left-width: 1px;
|
|
||||||
background-color: rgb(85, 85, 85);
|
|
||||||
padding-top: 4px;
|
|
||||||
padding-right: 8px;
|
|
||||||
padding-bottom: 4px;
|
|
||||||
padding-left: 8px;
|
|
||||||
transition-duration: 0.1s;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn.primary {
|
|
||||||
background-color: rgb(120, 174, 194);
|
|
||||||
color: rgb(255, 255, 255);
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn:hover {
|
|
||||||
background-color: rgb(141, 141, 141);
|
|
||||||
padding-right: 12px;
|
|
||||||
padding-left: 12px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn.primary:hover {
|
|
||||||
background-color: rgb(166, 216, 234);
|
|
||||||
padding-right: 12px;
|
|
||||||
padding-left: 12px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.footer {
|
|
||||||
white-space: normal;
|
|
||||||
font-size: 8px;
|
|
||||||
color: rgb(120, 120, 120);
|
|
||||||
}
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
fileFormatVersion: 2
|
|
||||||
guid: 98d97fb87c7dd3f48aac804898ad58ac
|
|
||||||
ScriptedImporter:
|
|
||||||
internalIDToNameTable: []
|
|
||||||
externalObjects: {}
|
|
||||||
serializedVersion: 2
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
||||||
script: {fileID: 12385, guid: 0000000000000000e000000000000000, type: 0}
|
|
||||||
disableValidation: 0
|
|
||||||
AssetOrigin:
|
|
||||||
serializedVersion: 1
|
|
||||||
productId: 278975
|
|
||||||
packageName: 'COZY Pro: Stylized Weather Bundle'
|
|
||||||
packageVersion: 3.6.4
|
|
||||||
assetPath: Assets/Distant Lands/COZY Pro/Editor/WelcomeWindow.uss
|
|
||||||
uploadId: 783565
|
|
||||||
@@ -1,14 +0,0 @@
|
|||||||
<ui:UXML xmlns:ui="UnityEngine.UIElements" xmlns:uie="UnityEditor.UIElements" xsi="http://www.w3.org/2001/XMLSchema-instance" engine="UnityEngine.UIElements" editor="UnityEditor.UIElements" noNamespaceSchemaLocation="../../../../UIElementsSchema/UIElements.xsd" editor-extension-mode="True">
|
|
||||||
<Style src="project://database/Assets/Distant%20Lands/COZY%20Pro/Editor/WelcomeWindow.uss?fileID=7433441132597879392&guid=98d97fb87c7dd3f48aac804898ad58ac&type=3#WelcomeWindow" />
|
|
||||||
<ui:VisualElement class="banner">
|
|
||||||
<ui:Label tabindex="-1" text="COZY Weather" parse-escape-sequences="true" display-tooltip-when-elided="true" />
|
|
||||||
</ui:VisualElement>
|
|
||||||
<ui:ScrollView vertical-scroller-visibility="AlwaysVisible" horizontal-scroller-visibility="Hidden" style="flex-grow: 1;">
|
|
||||||
<ui:Label tabindex="-1" text="Thank you!" parse-escape-sequences="true" display-tooltip-when-elided="true" class="h1" style="margin-bottom: 8px; margin-top: 12px; height: 23px;" />
|
|
||||||
<ui:Label tabindex="-1" text="Thank you for purchasing COZY Weather Pro for Unity. I hope that this package and these modules " parse-escape-sequences="true" display-tooltip-when-elided="true" class="p" />
|
|
||||||
<ui:Label tabindex="-1" text="Importing the Packages" parse-escape-sequences="true" display-tooltip-when-elided="true" class="h1" style="margin-bottom: 8px; margin-top: 12px; height: 23px;" />
|
|
||||||
<ui:Label tabindex="-1" text="COZY Pro gives you full access to COZY Weather 3 and all COZY 3 extension modules free of charge. To start using COZY, import the COZY Core package and all modules that you need for your project!" parse-escape-sequences="true" display-tooltip-when-elided="true" class="p" />
|
|
||||||
<ui:Label tabindex="-1" text="Clicking the download button will take you to the Unity Asset Store page for each package. Make sure that you are signed in to your account and the package will appear free to you. If you have any questions, please reach out to customer support at contact@distantlands.space" parse-escape-sequences="true" display-tooltip-when-elided="true" class="p" />
|
|
||||||
<ui:VisualElement name="module-grid" class="module-grid" />
|
|
||||||
</ui:ScrollView>
|
|
||||||
</ui:UXML>
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
fileFormatVersion: 2
|
|
||||||
guid: 0ee0148430d853a4baa06185c970ec0a
|
|
||||||
ScriptedImporter:
|
|
||||||
internalIDToNameTable: []
|
|
||||||
externalObjects: {}
|
|
||||||
serializedVersion: 2
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
||||||
script: {fileID: 13804, guid: 0000000000000000e000000000000000, type: 0}
|
|
||||||
AssetOrigin:
|
|
||||||
serializedVersion: 1
|
|
||||||
productId: 278975
|
|
||||||
packageName: 'COZY Pro: Stylized Weather Bundle'
|
|
||||||
packageVersion: 3.6.4
|
|
||||||
assetPath: Assets/Distant Lands/COZY Pro/Editor/WelcomeWindow.uxml
|
|
||||||
uploadId: 783565
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
# COZY Pro
|
|
||||||
Thank you for purchasing the COZY Pro bundle! To download the individual assets, please go to the Unity Asset Store pages of each package. For easy access to each package, open the COZY Pro splash screen in Tools/Cozy: Stylized Weather 3/Welcome to COZY Pro
|
|
||||||
@@ -1,14 +0,0 @@
|
|||||||
fileFormatVersion: 2
|
|
||||||
guid: c15ae7587bda65742b647fe9772f491d
|
|
||||||
TextScriptImporter:
|
|
||||||
externalObjects: {}
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
||||||
AssetOrigin:
|
|
||||||
serializedVersion: 1
|
|
||||||
productId: 278975
|
|
||||||
packageName: 'COZY Pro: Stylized Weather Bundle'
|
|
||||||
packageVersion: 3.6.4
|
|
||||||
assetPath: Assets/Distant Lands/COZY Pro/README.md
|
|
||||||
uploadId: 783565
|
|
||||||
@@ -1,37 +1,102 @@
|
|||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: 1cc6cc20abc7a464a9dec49ee02361cf
|
guid: 1cc6cc20abc7a464a9dec49ee02361cf
|
||||||
|
AssetOrigin:
|
||||||
|
serializedVersion: 1
|
||||||
|
productId: 194755
|
||||||
|
packageName: Animated PBR Chest Demo
|
||||||
|
packageVersion: 1.1.0
|
||||||
|
assetPath: Assets/Animated PBR Chest Demo/Fbx/Animated PBR Chest _Wood_Demo.fbx
|
||||||
|
uploadId: 618699
|
||||||
ModelImporter:
|
ModelImporter:
|
||||||
serializedVersion: 23
|
serializedVersion: 24200
|
||||||
fileIDToRecycleName:
|
internalIDToNameTable:
|
||||||
100000: //RootNode
|
- first:
|
||||||
100002: Armature
|
1: 100000
|
||||||
100004: Base
|
second: //RootNode
|
||||||
100006: Base.001
|
- first:
|
||||||
100008: Base.002
|
1: 100002
|
||||||
100010: Cap
|
second: Armature
|
||||||
100012: Cap.001
|
- first:
|
||||||
100014: Cap.002
|
1: 100004
|
||||||
100016: Cap.003
|
second: Base
|
||||||
100018: Handle.L
|
- first:
|
||||||
100020: Handle.R
|
1: 100006
|
||||||
100022: Root
|
second: Base.001
|
||||||
100024: WoodChest
|
- first:
|
||||||
400000: //RootNode
|
1: 100008
|
||||||
400002: Armature
|
second: Base.002
|
||||||
400004: Base
|
- first:
|
||||||
400006: Base.001
|
1: 100010
|
||||||
400008: Base.002
|
second: Cap
|
||||||
400010: Cap
|
- first:
|
||||||
400012: Cap.001
|
1: 100012
|
||||||
400014: Cap.002
|
second: Cap.001
|
||||||
400016: Cap.003
|
- first:
|
||||||
400018: Handle.L
|
1: 100014
|
||||||
400020: Handle.R
|
second: Cap.002
|
||||||
400022: Root
|
- first:
|
||||||
400024: WoodChest
|
1: 100016
|
||||||
4300000: WoodChest
|
second: Cap.003
|
||||||
9500000: //RootNode
|
- first:
|
||||||
13700000: WoodChest
|
1: 100018
|
||||||
|
second: Handle.L
|
||||||
|
- first:
|
||||||
|
1: 100020
|
||||||
|
second: Handle.R
|
||||||
|
- first:
|
||||||
|
1: 100022
|
||||||
|
second: Root
|
||||||
|
- first:
|
||||||
|
1: 100024
|
||||||
|
second: WoodChest
|
||||||
|
- first:
|
||||||
|
4: 400000
|
||||||
|
second: //RootNode
|
||||||
|
- first:
|
||||||
|
4: 400002
|
||||||
|
second: Armature
|
||||||
|
- first:
|
||||||
|
4: 400004
|
||||||
|
second: Base
|
||||||
|
- first:
|
||||||
|
4: 400006
|
||||||
|
second: Base.001
|
||||||
|
- first:
|
||||||
|
4: 400008
|
||||||
|
second: Base.002
|
||||||
|
- first:
|
||||||
|
4: 400010
|
||||||
|
second: Cap
|
||||||
|
- first:
|
||||||
|
4: 400012
|
||||||
|
second: Cap.001
|
||||||
|
- first:
|
||||||
|
4: 400014
|
||||||
|
second: Cap.002
|
||||||
|
- first:
|
||||||
|
4: 400016
|
||||||
|
second: Cap.003
|
||||||
|
- first:
|
||||||
|
4: 400018
|
||||||
|
second: Handle.L
|
||||||
|
- first:
|
||||||
|
4: 400020
|
||||||
|
second: Handle.R
|
||||||
|
- first:
|
||||||
|
4: 400022
|
||||||
|
second: Root
|
||||||
|
- first:
|
||||||
|
4: 400024
|
||||||
|
second: WoodChest
|
||||||
|
- first:
|
||||||
|
43: 4300000
|
||||||
|
second: WoodChest
|
||||||
|
- first:
|
||||||
|
95: 9500000
|
||||||
|
second: //RootNode
|
||||||
|
- first:
|
||||||
|
137: 13700000
|
||||||
|
second: WoodChest
|
||||||
externalObjects:
|
externalObjects:
|
||||||
- first:
|
- first:
|
||||||
type: UnityEngine:Material
|
type: UnityEngine:Material
|
||||||
@@ -39,7 +104,7 @@ ModelImporter:
|
|||||||
name: WoodChest
|
name: WoodChest
|
||||||
second: {fileID: 2100000, guid: 0e771690fad43914fb256fd021ff1796, type: 2}
|
second: {fileID: 2100000, guid: 0e771690fad43914fb256fd021ff1796, type: 2}
|
||||||
materials:
|
materials:
|
||||||
importMaterials: 1
|
materialImportMode: 1
|
||||||
materialName: 0
|
materialName: 0
|
||||||
materialSearch: 1
|
materialSearch: 1
|
||||||
materialLocation: 0
|
materialLocation: 0
|
||||||
@@ -48,9 +113,8 @@ ModelImporter:
|
|||||||
bakeSimulation: 0
|
bakeSimulation: 0
|
||||||
resampleCurves: 1
|
resampleCurves: 1
|
||||||
optimizeGameObjects: 1
|
optimizeGameObjects: 1
|
||||||
|
removeConstantScaleCurves: 0
|
||||||
motionNodeName:
|
motionNodeName:
|
||||||
rigImportErrors:
|
|
||||||
rigImportWarnings:
|
|
||||||
animationImportErrors:
|
animationImportErrors:
|
||||||
animationImportWarnings:
|
animationImportWarnings:
|
||||||
animationRetargetingWarnings:
|
animationRetargetingWarnings:
|
||||||
@@ -69,29 +133,43 @@ ModelImporter:
|
|||||||
isReadable: 0
|
isReadable: 0
|
||||||
meshes:
|
meshes:
|
||||||
lODScreenPercentages: []
|
lODScreenPercentages: []
|
||||||
globalScale: 1
|
globalScale: 0.5
|
||||||
meshCompression: 0
|
meshCompression: 0
|
||||||
addColliders: 0
|
addColliders: 0
|
||||||
useSRGBMaterialColor: 1
|
useSRGBMaterialColor: 1
|
||||||
|
sortHierarchyByName: 1
|
||||||
|
importPhysicalCameras: 1
|
||||||
importVisibility: 1
|
importVisibility: 1
|
||||||
importBlendShapes: 1
|
importBlendShapes: 1
|
||||||
importCameras: 1
|
importCameras: 1
|
||||||
importLights: 1
|
importLights: 1
|
||||||
|
nodeNameCollisionStrategy: 0
|
||||||
|
fileIdsGeneration: 1
|
||||||
swapUVChannels: 0
|
swapUVChannels: 0
|
||||||
generateSecondaryUV: 0
|
generateSecondaryUV: 0
|
||||||
useFileUnits: 1
|
useFileUnits: 1
|
||||||
optimizeMeshForGPU: 1
|
|
||||||
keepQuads: 0
|
keepQuads: 0
|
||||||
weldVertices: 1
|
weldVertices: 1
|
||||||
|
bakeAxisConversion: 0
|
||||||
preserveHierarchy: 0
|
preserveHierarchy: 0
|
||||||
|
skinWeightsMode: 0
|
||||||
|
maxBonesPerVertex: 4
|
||||||
|
minBoneWeight: 0.001
|
||||||
|
optimizeBones: 1
|
||||||
|
generateMeshLods: 0
|
||||||
|
meshLodGenerationFlags: 0
|
||||||
|
maximumMeshLod: -1
|
||||||
|
meshOptimizationFlags: -1
|
||||||
indexFormat: 0
|
indexFormat: 0
|
||||||
secondaryUVAngleDistortion: 8
|
secondaryUVAngleDistortion: 8
|
||||||
secondaryUVAreaDistortion: 15.000001
|
secondaryUVAreaDistortion: 15.000001
|
||||||
secondaryUVHardAngle: 88
|
secondaryUVHardAngle: 88
|
||||||
|
secondaryUVMarginMethod: 0
|
||||||
|
secondaryUVMinLightmapResolution: 40
|
||||||
|
secondaryUVMinObjectScale: 1
|
||||||
secondaryUVPackMargin: 4
|
secondaryUVPackMargin: 4
|
||||||
useFileScale: 1
|
useFileScale: 1
|
||||||
previousCalculatedGlobalScale: 1
|
strictVertexDataChecks: 0
|
||||||
hasPreviousCalculatedGlobalScale: 1
|
|
||||||
tangentSpace:
|
tangentSpace:
|
||||||
normalSmoothAngle: 60
|
normalSmoothAngle: 60
|
||||||
normalImportMode: 0
|
normalImportMode: 0
|
||||||
@@ -100,10 +178,10 @@ ModelImporter:
|
|||||||
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
|
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
|
||||||
blendShapeNormalImportMode: 1
|
blendShapeNormalImportMode: 1
|
||||||
normalSmoothingSource: 0
|
normalSmoothingSource: 0
|
||||||
|
referencedClips: []
|
||||||
importAnimation: 0
|
importAnimation: 0
|
||||||
copyAvatar: 0
|
|
||||||
humanDescription:
|
humanDescription:
|
||||||
serializedVersion: 2
|
serializedVersion: 3
|
||||||
human: []
|
human: []
|
||||||
skeleton: []
|
skeleton: []
|
||||||
armTwist: 0.5
|
armTwist: 0.5
|
||||||
@@ -113,21 +191,20 @@ ModelImporter:
|
|||||||
armStretch: 0.05
|
armStretch: 0.05
|
||||||
legStretch: 0.05
|
legStretch: 0.05
|
||||||
feetSpacing: 0
|
feetSpacing: 0
|
||||||
|
globalScale: 0.5
|
||||||
rootMotionBoneName:
|
rootMotionBoneName:
|
||||||
hasTranslationDoF: 0
|
hasTranslationDoF: 0
|
||||||
hasExtraRoot: 0
|
hasExtraRoot: 0
|
||||||
skeletonHasParents: 1
|
skeletonHasParents: 1
|
||||||
lastHumanDescriptionAvatarSource: {instanceID: 0}
|
lastHumanDescriptionAvatarSource: {instanceID: 0}
|
||||||
|
autoGenerateAvatarMappingIfUnspecified: 1
|
||||||
animationType: 2
|
animationType: 2
|
||||||
humanoidOversampling: 1
|
humanoidOversampling: 1
|
||||||
|
avatarSetup: 1
|
||||||
|
addHumanoidExtraRootOnlyWhenUsingAvatar: 0
|
||||||
|
importBlendShapeDeformPercent: 0
|
||||||
|
remapMaterialsIfMaterialImportModeIsNone: 1
|
||||||
additionalBone: 0
|
additionalBone: 0
|
||||||
userData:
|
userData:
|
||||||
assetBundleName:
|
assetBundleName:
|
||||||
assetBundleVariant:
|
assetBundleVariant:
|
||||||
AssetOrigin:
|
|
||||||
serializedVersion: 1
|
|
||||||
productId: 194755
|
|
||||||
packageName: Animated PBR Chest Demo
|
|
||||||
packageVersion: 1.1.0
|
|
||||||
assetPath: Assets/Animated PBR Chest Demo/Fbx/Animated PBR Chest _Wood_Demo.fbx
|
|
||||||
uploadId: 618699
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
%YAML 1.1
|
%YAML 1.1
|
||||||
%TAG !u! tag:unity3d.com,2011:
|
%TAG !u! tag:unity3d.com,2011:
|
||||||
--- !u!114 &-7089469192452529075
|
--- !u!114 &-7717569176498003463
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 11
|
m_ObjectHideFlags: 11
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
|||||||
@@ -2,20 +2,26 @@
|
|||||||
%TAG !u! tag:unity3d.com,2011:
|
%TAG !u! tag:unity3d.com,2011:
|
||||||
--- !u!21 &2100000
|
--- !u!21 &2100000
|
||||||
Material:
|
Material:
|
||||||
serializedVersion: 6
|
serializedVersion: 8
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
m_PrefabInstance: {fileID: 0}
|
m_PrefabInstance: {fileID: 0}
|
||||||
m_PrefabAsset: {fileID: 0}
|
m_PrefabAsset: {fileID: 0}
|
||||||
m_Name: IL3DN_Sky_Procedural
|
m_Name: IL3DN_Sky_Procedural
|
||||||
m_Shader: {fileID: 106, guid: 0000000000000000f000000000000000, type: 0}
|
m_Shader: {fileID: 106, guid: 0000000000000000f000000000000000, type: 0}
|
||||||
m_ShaderKeywords: _EMISSION _SUNDISK_HIGH_QUALITY
|
m_Parent: {fileID: 0}
|
||||||
|
m_ModifiedSerializedProperties: 0
|
||||||
|
m_ValidKeywords:
|
||||||
|
- _SUNDISK_HIGH_QUALITY
|
||||||
|
m_InvalidKeywords:
|
||||||
|
- _EMISSION
|
||||||
m_LightmapFlags: 1
|
m_LightmapFlags: 1
|
||||||
m_EnableInstancingVariants: 0
|
m_EnableInstancingVariants: 0
|
||||||
m_DoubleSidedGI: 0
|
m_DoubleSidedGI: 0
|
||||||
m_CustomRenderQueue: -1
|
m_CustomRenderQueue: -1
|
||||||
stringTagMap: {}
|
stringTagMap: {}
|
||||||
disabledShaderPasses: []
|
disabledShaderPasses: []
|
||||||
|
m_LockedProperties:
|
||||||
m_SavedProperties:
|
m_SavedProperties:
|
||||||
serializedVersion: 3
|
serializedVersion: 3
|
||||||
m_TexEnvs:
|
m_TexEnvs:
|
||||||
@@ -55,6 +61,7 @@ Material:
|
|||||||
m_Texture: {fileID: 0}
|
m_Texture: {fileID: 0}
|
||||||
m_Scale: {x: 1, y: 1}
|
m_Scale: {x: 1, y: 1}
|
||||||
m_Offset: {x: 0, y: 0}
|
m_Offset: {x: 0, y: 0}
|
||||||
|
m_Ints: []
|
||||||
m_Floats:
|
m_Floats:
|
||||||
- _AtmosphereThickness: 0.65
|
- _AtmosphereThickness: 0.65
|
||||||
- _BumpScale: 1
|
- _BumpScale: 1
|
||||||
@@ -82,3 +89,5 @@ Material:
|
|||||||
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
|
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
|
||||||
- _GroundColor: {r: 0.6745283, g: 0.9704886, b: 1, a: 1}
|
- _GroundColor: {r: 0.6745283, g: 0.9704886, b: 1, a: 1}
|
||||||
- _SkyTint: {r: 0.15181652, g: 0.8602941, b: 0.8016616, a: 1}
|
- _SkyTint: {r: 0.15181652, g: 0.8602941, b: 0.8016616, a: 1}
|
||||||
|
m_BuildTextureStacks: []
|
||||||
|
m_AllowLocking: 1
|
||||||
|
|||||||
@@ -11,8 +11,7 @@ GameObject:
|
|||||||
- component: {fileID: 3714593433905687095}
|
- component: {fileID: 3714593433905687095}
|
||||||
- component: {fileID: 5681262012823064577}
|
- component: {fileID: 5681262012823064577}
|
||||||
- component: {fileID: 2155936523658636536}
|
- component: {fileID: 2155936523658636536}
|
||||||
- component: {fileID: -4039253569498786944}
|
m_Layer: 14
|
||||||
m_Layer: 9
|
|
||||||
m_Name: Wall_Prefab
|
m_Name: Wall_Prefab
|
||||||
m_TagString: Untagged
|
m_TagString: Untagged
|
||||||
m_Icon: {fileID: 0}
|
m_Icon: {fileID: 0}
|
||||||
@@ -91,24 +90,3 @@ MeshRenderer:
|
|||||||
m_SortingOrder: 0
|
m_SortingOrder: 0
|
||||||
m_MaskInteraction: 0
|
m_MaskInteraction: 0
|
||||||
m_AdditionalVertexStreams: {fileID: 0}
|
m_AdditionalVertexStreams: {fileID: 0}
|
||||||
--- !u!65 &-4039253569498786944
|
|
||||||
BoxCollider:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 421010513357740068}
|
|
||||||
m_Material: {fileID: 0}
|
|
||||||
m_IncludeLayers:
|
|
||||||
serializedVersion: 2
|
|
||||||
m_Bits: 0
|
|
||||||
m_ExcludeLayers:
|
|
||||||
serializedVersion: 2
|
|
||||||
m_Bits: 0
|
|
||||||
m_LayerOverridePriority: 0
|
|
||||||
m_IsTrigger: 0
|
|
||||||
m_ProvidesContacts: 0
|
|
||||||
m_Enabled: 1
|
|
||||||
serializedVersion: 3
|
|
||||||
m_Size: {x: 2.4617782, y: 2.50951, z: 0.2520886}
|
|
||||||
m_Center: {x: 0.0095511675, y: 1.2509763, z: -0.0246767}
|
|
||||||
|
|||||||
@@ -11,8 +11,7 @@ GameObject:
|
|||||||
- component: {fileID: 8054689501814014560}
|
- component: {fileID: 8054689501814014560}
|
||||||
- component: {fileID: 1338422113681176662}
|
- component: {fileID: 1338422113681176662}
|
||||||
- component: {fileID: 4733158660651713711}
|
- component: {fileID: 4733158660651713711}
|
||||||
- component: {fileID: 5106284389308251883}
|
m_Layer: 14
|
||||||
m_Layer: 9
|
|
||||||
m_Name: WoodCelling_Prefab
|
m_Name: WoodCelling_Prefab
|
||||||
m_TagString: Untagged
|
m_TagString: Untagged
|
||||||
m_Icon: {fileID: 0}
|
m_Icon: {fileID: 0}
|
||||||
@@ -91,24 +90,3 @@ MeshRenderer:
|
|||||||
m_SortingOrder: 0
|
m_SortingOrder: 0
|
||||||
m_MaskInteraction: 0
|
m_MaskInteraction: 0
|
||||||
m_AdditionalVertexStreams: {fileID: 0}
|
m_AdditionalVertexStreams: {fileID: 0}
|
||||||
--- !u!65 &5106284389308251883
|
|
||||||
BoxCollider:
|
|
||||||
m_ObjectHideFlags: 0
|
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
|
||||||
m_PrefabInstance: {fileID: 0}
|
|
||||||
m_PrefabAsset: {fileID: 0}
|
|
||||||
m_GameObject: {fileID: 6454600228789530739}
|
|
||||||
m_Material: {fileID: 0}
|
|
||||||
m_IncludeLayers:
|
|
||||||
serializedVersion: 2
|
|
||||||
m_Bits: 0
|
|
||||||
m_ExcludeLayers:
|
|
||||||
serializedVersion: 2
|
|
||||||
m_Bits: 0
|
|
||||||
m_LayerOverridePriority: 0
|
|
||||||
m_IsTrigger: 0
|
|
||||||
m_ProvidesContacts: 0
|
|
||||||
m_Enabled: 1
|
|
||||||
serializedVersion: 3
|
|
||||||
m_Size: {x: 2.4893725, y: 0.279638, z: 2.4685874}
|
|
||||||
m_Center: {x: 0.0011386871, y: -0.07322356, z: -0.012834609}
|
|
||||||
|
|||||||
@@ -9,6 +9,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Shared/Demo Assets/Instructions.prefab
|
assetPath: Assets/External/NV3D/Shatter Stone/Shared/Demo Assets/Instructions.prefab
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -9,6 +9,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Shared/Demo Assets/ShatterStone_InteractionController.prefab
|
assetPath: Assets/External/NV3D/Shatter Stone/Shared/Demo Assets/ShatterStone_InteractionController.prefab
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -10,6 +10,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Shared/Demo Assets/Trigger Sphere.mat
|
assetPath: Assets/External/NV3D/Shatter Stone/Shared/Demo Assets/Trigger Sphere.mat
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -9,6 +9,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Shared/Demo Assets/Trigger Sphere.prefab
|
assetPath: Assets/External/NV3D/Shatter Stone/Shared/Demo Assets/Trigger Sphere.prefab
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -10,6 +10,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Shared/Legacy/Script Graphs/SG_ PickupSpawnAnim.asset
|
assetPath: Assets/External/NV3D/Shatter Stone/Shared/Legacy/Script Graphs/SG_ PickupSpawnAnim.asset
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -10,6 +10,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Shared/Legacy/Script Graphs/SG_OreNode.asset
|
assetPath: Assets/External/NV3D/Shatter Stone/Shared/Legacy/Script Graphs/SG_OreNode.asset
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -10,6 +10,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Shared/Legacy/Script Graphs/SG_PickaxeTrigger.asset
|
assetPath: Assets/External/NV3D/Shatter Stone/Shared/Legacy/Script Graphs/SG_PickaxeTrigger.asset
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -10,6 +10,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Shared/Legacy/Script Graphs/SG_ShatterCleanUp.asset
|
assetPath: Assets/External/NV3D/Shatter Stone/Shared/Legacy/Script Graphs/SG_ShatterCleanUp.asset
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -25,6 +25,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Shared/SFX/PickHit/PickHit_1.wav
|
assetPath: Assets/External/NV3D/Shatter Stone/Shared/SFX/PickHit/PickHit_1.wav
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -25,6 +25,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Shared/SFX/PickHit/PickHit_10.wav
|
assetPath: Assets/External/NV3D/Shatter Stone/Shared/SFX/PickHit/PickHit_10.wav
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -25,6 +25,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Shared/SFX/PickHit/PickHit_11.wav
|
assetPath: Assets/External/NV3D/Shatter Stone/Shared/SFX/PickHit/PickHit_11.wav
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -25,6 +25,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Shared/SFX/PickHit/PickHit_12.wav
|
assetPath: Assets/External/NV3D/Shatter Stone/Shared/SFX/PickHit/PickHit_12.wav
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -25,6 +25,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Shared/SFX/PickHit/PickHit_13.wav
|
assetPath: Assets/External/NV3D/Shatter Stone/Shared/SFX/PickHit/PickHit_13.wav
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -25,6 +25,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Shared/SFX/PickHit/PickHit_14.wav
|
assetPath: Assets/External/NV3D/Shatter Stone/Shared/SFX/PickHit/PickHit_14.wav
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -25,6 +25,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Shared/SFX/PickHit/PickHit_2.wav
|
assetPath: Assets/External/NV3D/Shatter Stone/Shared/SFX/PickHit/PickHit_2.wav
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -25,6 +25,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Shared/SFX/PickHit/PickHit_3.wav
|
assetPath: Assets/External/NV3D/Shatter Stone/Shared/SFX/PickHit/PickHit_3.wav
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -25,6 +25,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Shared/SFX/PickHit/PickHit_4.wav
|
assetPath: Assets/External/NV3D/Shatter Stone/Shared/SFX/PickHit/PickHit_4.wav
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -25,6 +25,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Shared/SFX/PickHit/PickHit_5.wav
|
assetPath: Assets/External/NV3D/Shatter Stone/Shared/SFX/PickHit/PickHit_5.wav
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -25,6 +25,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Shared/SFX/PickHit/PickHit_6.wav
|
assetPath: Assets/External/NV3D/Shatter Stone/Shared/SFX/PickHit/PickHit_6.wav
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -25,6 +25,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Shared/SFX/PickHit/PickHit_7.wav
|
assetPath: Assets/External/NV3D/Shatter Stone/Shared/SFX/PickHit/PickHit_7.wav
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -25,6 +25,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Shared/SFX/PickHit/PickHit_8.wav
|
assetPath: Assets/External/NV3D/Shatter Stone/Shared/SFX/PickHit/PickHit_8.wav
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -25,6 +25,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Shared/SFX/PickHit/PickHit_9.wav
|
assetPath: Assets/External/NV3D/Shatter Stone/Shared/SFX/PickHit/PickHit_9.wav
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -25,6 +25,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Shared/SFX/PickHit/PickHit_Sandy_1.wav
|
assetPath: Assets/External/NV3D/Shatter Stone/Shared/SFX/PickHit/PickHit_Sandy_1.wav
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -25,6 +25,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Shared/SFX/PickHit/PickHit_Sandy_2.wav
|
assetPath: Assets/External/NV3D/Shatter Stone/Shared/SFX/PickHit/PickHit_Sandy_2.wav
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -25,6 +25,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Shared/SFX/PickHit/PickHit_Sandy_3.wav
|
assetPath: Assets/External/NV3D/Shatter Stone/Shared/SFX/PickHit/PickHit_Sandy_3.wav
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -25,6 +25,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Shared/SFX/Pickup/Pickup_1.wav
|
assetPath: Assets/External/NV3D/Shatter Stone/Shared/SFX/Pickup/Pickup_1.wav
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -25,6 +25,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Shared/SFX/Pickup/Pickup_2.wav
|
assetPath: Assets/External/NV3D/Shatter Stone/Shared/SFX/Pickup/Pickup_2.wav
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -25,6 +25,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Shared/SFX/Pickup/Pickup_3.wav
|
assetPath: Assets/External/NV3D/Shatter Stone/Shared/SFX/Pickup/Pickup_3.wav
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -25,6 +25,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Shared/SFX/Pickup/Pickup_4.wav
|
assetPath: Assets/External/NV3D/Shatter Stone/Shared/SFX/Pickup/Pickup_4.wav
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -25,6 +25,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Shared/SFX/Pickup/Pickup_5.wav
|
assetPath: Assets/External/NV3D/Shatter Stone/Shared/SFX/Pickup/Pickup_5.wav
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -25,6 +25,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Shared/SFX/Pickup/Pickup_Click_1.wav
|
assetPath: Assets/External/NV3D/Shatter Stone/Shared/SFX/Pickup/Pickup_Click_1.wav
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -25,6 +25,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Shared/SFX/Pickup/Pickup_Click_2.wav
|
assetPath: Assets/External/NV3D/Shatter Stone/Shared/SFX/Pickup/Pickup_Click_2.wav
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -25,6 +25,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Shared/SFX/Pickup/Pickup_Click_3.wav
|
assetPath: Assets/External/NV3D/Shatter Stone/Shared/SFX/Pickup/Pickup_Click_3.wav
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -25,6 +25,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Shared/SFX/Pickup/Pickup_Click_4.wav
|
assetPath: Assets/External/NV3D/Shatter Stone/Shared/SFX/Pickup/Pickup_Click_4.wav
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -25,6 +25,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Shared/SFX/Pickup/Pickup_Ding_1.wav
|
assetPath: Assets/External/NV3D/Shatter Stone/Shared/SFX/Pickup/Pickup_Ding_1.wav
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -25,6 +25,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Shared/SFX/Pickup/Pickup_Ding_2.wav
|
assetPath: Assets/External/NV3D/Shatter Stone/Shared/SFX/Pickup/Pickup_Ding_2.wav
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -25,6 +25,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Shared/SFX/Pickup/Pickup_Ding_3.wav
|
assetPath: Assets/External/NV3D/Shatter Stone/Shared/SFX/Pickup/Pickup_Ding_3.wav
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -25,6 +25,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Shared/SFX/Pickup/Pickup_Ding_4.wav
|
assetPath: Assets/External/NV3D/Shatter Stone/Shared/SFX/Pickup/Pickup_Ding_4.wav
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -25,6 +25,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Shared/SFX/Pickup/Pickup_Ding_5.wav
|
assetPath: Assets/External/NV3D/Shatter Stone/Shared/SFX/Pickup/Pickup_Ding_5.wav
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -25,6 +25,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Shared/SFX/Pickup/Pickup_Ding_6.wav
|
assetPath: Assets/External/NV3D/Shatter Stone/Shared/SFX/Pickup/Pickup_Ding_6.wav
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -25,6 +25,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Shared/SFX/Pickup/Pickup_Thud_1.wav
|
assetPath: Assets/External/NV3D/Shatter Stone/Shared/SFX/Pickup/Pickup_Thud_1.wav
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -25,6 +25,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Shared/SFX/Pickup/Pickup_Thud_2.wav
|
assetPath: Assets/External/NV3D/Shatter Stone/Shared/SFX/Pickup/Pickup_Thud_2.wav
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -25,6 +25,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Shared/SFX/Pickup/Pickup_Thud_3.wav
|
assetPath: Assets/External/NV3D/Shatter Stone/Shared/SFX/Pickup/Pickup_Thud_3.wav
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -25,6 +25,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Shared/SFX/Pickup/Pickup_Thud_4.wav
|
assetPath: Assets/External/NV3D/Shatter Stone/Shared/SFX/Pickup/Pickup_Thud_4.wav
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -25,6 +25,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Shared/SFX/Pickup/Pickup_Thud_5.wav
|
assetPath: Assets/External/NV3D/Shatter Stone/Shared/SFX/Pickup/Pickup_Thud_5.wav
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -25,6 +25,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Shared/SFX/Pickup/Pickup_Thud_6.wav
|
assetPath: Assets/External/NV3D/Shatter Stone/Shared/SFX/Pickup/Pickup_Thud_6.wav
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -25,6 +25,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Shared/SFX/Pickup/Pickup_Thud_7.wav
|
assetPath: Assets/External/NV3D/Shatter Stone/Shared/SFX/Pickup/Pickup_Thud_7.wav
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -25,6 +25,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Shared/SFX/Pickup/Pickup_Thud_8.wav
|
assetPath: Assets/External/NV3D/Shatter Stone/Shared/SFX/Pickup/Pickup_Thud_8.wav
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -25,6 +25,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Shared/SFX/Shatter/GemShatter_1.wav
|
assetPath: Assets/External/NV3D/Shatter Stone/Shared/SFX/Shatter/GemShatter_1.wav
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -25,6 +25,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Shared/SFX/Shatter/GemShatter_2.wav
|
assetPath: Assets/External/NV3D/Shatter Stone/Shared/SFX/Shatter/GemShatter_2.wav
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -25,6 +25,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Shared/SFX/Shatter/Shatter_1.wav
|
assetPath: Assets/External/NV3D/Shatter Stone/Shared/SFX/Shatter/Shatter_1.wav
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -25,6 +25,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Shared/SFX/Shatter/Shatter_2.wav
|
assetPath: Assets/External/NV3D/Shatter Stone/Shared/SFX/Shatter/Shatter_2.wav
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -25,6 +25,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Shared/SFX/Shatter/Shatter_3.wav
|
assetPath: Assets/External/NV3D/Shatter Stone/Shared/SFX/Shatter/Shatter_3.wav
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
#if ENABLE_INPUT_SYSTEM && UNITY_INPUT_SYSTEM_EXISTS
|
#if ENABLE_INPUT_SYSTEM
|
||||||
using UnityEngine.InputSystem;
|
using UnityEngine.InputSystem;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@@ -24,7 +24,7 @@ namespace ShatterStone
|
|||||||
bool inputPressed = false;
|
bool inputPressed = false;
|
||||||
Vector2 pointerPos = default;
|
Vector2 pointerPos = default;
|
||||||
|
|
||||||
#if ENABLE_INPUT_SYSTEM && UNITY_INPUT_SYSTEM_EXISTS
|
#if ENABLE_INPUT_SYSTEM
|
||||||
if (Mouse.current != null && Mouse.current.leftButton.wasPressedThisFrame)
|
if (Mouse.current != null && Mouse.current.leftButton.wasPressedThisFrame)
|
||||||
{
|
{
|
||||||
inputPressed = true;
|
inputPressed = true;
|
||||||
|
|||||||
@@ -4,6 +4,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Shared/Scripts/DemoClickInteraction.cs
|
assetPath: Assets/External/NV3D/Shatter Stone/Shared/Scripts/DemoClickInteraction.cs
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -4,6 +4,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Shared/Scripts/MiningNodeAudio.cs
|
assetPath: Assets/External/NV3D/Shatter Stone/Shared/Scripts/MiningNodeAudio.cs
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -4,6 +4,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Shared/Scripts/OreNode.cs
|
assetPath: Assets/External/NV3D/Shatter Stone/Shared/Scripts/OreNode.cs
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -4,6 +4,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Shared/Scripts/PickaxeTrigger.cs
|
assetPath: Assets/External/NV3D/Shatter Stone/Shared/Scripts/PickaxeTrigger.cs
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -4,6 +4,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Shared/Scripts/PickupController.cs
|
assetPath: Assets/External/NV3D/Shatter Stone/Shared/Scripts/PickupController.cs
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -4,6 +4,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Shared/Scripts/ShatterCleanUp.cs
|
assetPath: Assets/External/NV3D/Shatter Stone/Shared/Scripts/ShatterCleanUp.cs
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -119,6 +119,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Shared/Textures/T_Debris1.png
|
assetPath: Assets/External/NV3D/Shatter Stone/Shared/Textures/T_Debris1.png
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -119,6 +119,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Shared/Textures/T_DustCloud.png
|
assetPath: Assets/External/NV3D/Shatter Stone/Shared/Textures/T_DustCloud.png
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -119,6 +119,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Shared/Textures/T_GlowStrip.png
|
assetPath: Assets/External/NV3D/Shatter Stone/Shared/Textures/T_GlowStrip.png
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -119,6 +119,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Shared/Textures/T_Ring.png
|
assetPath: Assets/External/NV3D/Shatter Stone/Shared/Textures/T_Ring.png
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -119,6 +119,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Shared/Textures/T_Sparkle.png
|
assetPath: Assets/External/NV3D/Shatter Stone/Shared/Textures/T_Sparkle.png
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -119,6 +119,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Shared/Textures/T_Sparkle_2.png
|
assetPath: Assets/External/NV3D/Shatter Stone/Shared/Textures/T_Sparkle_2.png
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -119,6 +119,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Shared/Textures/T_Trail.png
|
assetPath: Assets/External/NV3D/Shatter Stone/Shared/Textures/T_Trail.png
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -9,6 +9,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Stylized Gemstones/Demo/Demo.unity
|
assetPath: Assets/External/NV3D/Shatter Stone/Stylized Gemstones/Demo/Demo.unity
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -10,6 +10,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Stylized Gemstones/Demo/Floor.mat
|
assetPath: Assets/External/NV3D/Shatter Stone/Stylized Gemstones/Demo/Floor.mat
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -0,0 +1,14 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: a12f60b10f3ca864e87a3444a6f0a978
|
||||||
|
DefaultImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
|
AssetOrigin:
|
||||||
|
serializedVersion: 1
|
||||||
|
productId: 291300
|
||||||
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
|
packageVersion: 3.0.0
|
||||||
|
assetPath: Assets/External/NV3D/Shatter Stone/Stylized Gemstones/Legacy/SG_Prefabs_StylizedGemstones.unitypackage
|
||||||
|
uploadId: 886884
|
||||||
@@ -10,6 +10,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Stylized Gemstones/Materials/M_Gem1.mat
|
assetPath: Assets/External/NV3D/Shatter Stone/Stylized Gemstones/Materials/M_Gem1.mat
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||
@@ -10,6 +10,6 @@ AssetOrigin:
|
|||||||
serializedVersion: 1
|
serializedVersion: 1
|
||||||
productId: 291300
|
productId: 291300
|
||||||
packageName: 'Shatter Stone: Stylized Gemstones'
|
packageName: 'Shatter Stone: Stylized Gemstones'
|
||||||
packageVersion: 1.2
|
packageVersion: 3.0.0
|
||||||
assetPath: Assets/NV3D/Shatter Stone/Stylized Gemstones/Materials/M_Gem1_Tiled.mat
|
assetPath: Assets/External/NV3D/Shatter Stone/Stylized Gemstones/Materials/M_Gem1_Tiled.mat
|
||||||
uploadId: 765288
|
uploadId: 886884
|
||||||
|
|||||||