Compare commits
49 Commits
9d6977cd64
..
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 5dced78de2 | |||
| 150f30f56c | |||
| 4bd00818e1 | |||
| e0c59ad663 | |||
| bdeee3c51a | |||
| 13d591e789 | |||
| b00926dc6e | |||
| 1835718023 | |||
| 9f145e3a83 | |||
| 05bf835862 | |||
| 501c52d809 | |||
| baa6eb521a | |||
| 34b41532ee | |||
| de81a6f2f3 | |||
| b407f7cd6f | |||
| c87dd04e87 | |||
| e42760e7d0 | |||
| 0744cdf4f3 | |||
| b80aa1b24b | |||
| 37b211a7f8 | |||
| 9f61f7c6fe | |||
| 62e48a3b0b | |||
| 6a412fe3e7 | |||
| aa5247aff4 | |||
| 6923888905 | |||
| f60e9ab60a | |||
| d0e78e935d | |||
| 60df50f8fe | |||
| 977b5c1f8e | |||
| 749aedfbde | |||
| 9f9c3b07b9 | |||
| c78768cbdf | |||
| be55683f11 | |||
| 69685a665a | |||
| 059458db8b | |||
| c88e6f3c7a | |||
| 8ddbc70ae7 | |||
| 2d47287b15 | |||
| 8df43b8307 | |||
| ac8ddd0f36 | |||
| 8b50753f93 | |||
| 5e0044b492 | |||
| eaff8d16e3 | |||
| f3aec94c48 | |||
| 1015f5d3fa | |||
| e03be4861f | |||
| 5569fcd552 | |||
| 040463ad07 | |||
| 2aebc37115 |
@@ -25,7 +25,11 @@
|
||||
"Bash(git reset --hard:*)",
|
||||
"Bash(git push --force:*)",
|
||||
"Bash(git push -f:*)",
|
||||
"Bash(git clean -fd:*)"
|
||||
"Bash(git clean -fd:*)",
|
||||
"Bash(git checkout -- :*)",
|
||||
"Bash(git checkout .:*)",
|
||||
"Bash(git restore:*)",
|
||||
"Bash(git stash:*)"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,7 +11,7 @@ The spine: **size by complexity → ground → agree the change → setup scene
|
||||
|
||||
## Non-negotiables (every track)
|
||||
|
||||
1. **The material keystone ★ — no per-asset texturing, ever.** Every asset shares the ONE palette atlas (`Assets/_Project/Art/Palette/PaletteAtlas.png`) + emissive materials; color = *placing* a face's UV onto a colour band, never unwrap/paint. Three shader roles only: Lit-Palette (statics), Emissive-Gloam (glows — hue/flicker = gameplay info), Skinned-Palette (creatures/suits). This is the solo-dev keystone — deviating breaks batching, coherence, and the whole factory. Detail → [[Art_Direction_Lantern]] + `references/style-and-practices.md`.
|
||||
1. **The material keystone ★ — no per-asset texturing, ever.** Every asset shares the ONE palette atlas (`Assets/_Project/Art/Palette/PaletteAtlas.png`) + emissive materials; color = *placing* a face's UV onto a colour band, never unwrap/paint. Three shader roles only: Lit-Palette (statics), Emissive-Gloam (glows — hue/flicker = gameplay info), Skinned-Palette (creatures/suits). This is the solo-dev keystone — deviating breaks batching, coherence, and the whole factory. **A kitbashed or AI-generated mesh arrives with its OWN baked texture — that clash IS the keystone violation; strip it and re-material to the shared palette + flat-shade before it ships** (§14). Detail → [[Art_Direction_Lantern]] + `references/style-and-practices.md`.
|
||||
2. **Poly budgets + the readability law ★.** props ≤ ~800 tris · creatures ≤ ~3k · hero/boss/suit ≤ ~6k. Value-first (every warm/cold read carried by luminance + shape + flicker-cadence, not hue alone); reads at 200 px; silhouette-first. Report the tri count on every asset.
|
||||
3. **The palette ontology ★.** warm gold/amber = true light (ours) · cold corpse-green/blue = gloam (counterfeit) · lure-red = bait · white-hot = conversion. Steady = true, flicker = false. Pick emissive hues to match what the asset *is*.
|
||||
4. **Nudge-and-bake for precision ★.** Never script fine placement/pose/aesthetics blind (a script can't see painted/low-poly features + judges via a low-res grab). Stage + hand off to the operator's live GUI, then **bake the result back into a reproducible form** (bone-local offsets, saved transforms). See *The nudge-and-bake loop* below + [[blender-hybrid-nudge-and-bake]].
|
||||
@@ -55,6 +55,7 @@ Establish the LANTERN working scene (snippets → `references/blender-cookbook.m
|
||||
|
||||
### Phase 4 — Build
|
||||
- **Model/kitbash (Auto):** primitives via `bmesh.ops`; faceted (flat shading); UVs *placed* on atlas cells (never unwrap); Synty base import via the **5.1 window-override + `ignore_leaf_bones=True, automatic_bone_orientation=False`** workaround; normalize to metres/feet-at-floor. Report tris vs budget.
|
||||
- **AI-generate an iconic shape (Auto, last resort):** when scripted primitives can't nail an *iconic organic hard-surface* form (a Mark-V helmet, an ornate horn) and hand attempts read as golf-ball/egg/blob, **generate the base with Hyper3D Rodin** then **conform it** — it arrives as raw photoreal high-poly meter-scale clay that clashes with the flat low-poly body. The conform pass IS the work: clean-decimate to budget (watertight — weld+recalc FIRST, gentle collapse, 0 boundary edges), **drop the baked texture for the shared palette**, flat-shade, ontology-tie any emissive, and (rigid accessory) don't skin a generated mesh onto a cm-scale rig (~100× shrink → invisible). Full recipe → `references/blender-cookbook.md` §14.
|
||||
- **Precision / pose / silhouette (Guided) → the nudge-and-bake loop** (next section).
|
||||
- Iterate: for Guided, the operator can request modifications ("bigger", "move it", "add another there", "stage the vent for me") — treat each as a mini Auto or a new stage. Keep going until they're happy.
|
||||
|
||||
|
||||
@@ -268,7 +268,7 @@ The direction that landed (operator-approved): **the interest lives in the LIGHT
|
||||
To drop a posed suit/creature into the staging scene as a static mesh (skinned Rukhanka bake is separate `/dots-dev` work): in Blender — **apply the `Armature` modifier** on each skinned mesh (bakes the current pose into geometry), **`visual_transform_apply` + clear constraints** on bone-parented kit (eyes/lamp Child-Of), then export a static glb (meshes only, no armature). ⚠ both `modifier_apply` and `export_scene.gltf` need the **window `temp_override`** after `open_mainfile` (context.active_object). Import via `import_model_file`, `InstantiatePrefab` at the slot — glTFast carries the embedded materials (Synty atlas + emission).
|
||||
```
|
||||
|
||||
## 12. Skinned attachment kit → existing Unity rig (proven 07-16, Bathynaut dome/tank/lamp)
|
||||
## 13. Skinned attachment kit → existing Unity rig (proven 07-16, Bathynaut dome/tank/lamp)
|
||||
|
||||
Rigid accessories that must RIDE an already-in-engine Rukhanka rig (helmet, packs, lamps). Full failure-chain + Unity-side detail: gotchas archive 2026-07-16 + [[DR-052_SoD_Facing_Underwater_Feel]].
|
||||
|
||||
@@ -291,3 +291,49 @@ Unity side (`PlayerRigTools.AttachBathynautKit` / `GraftSmr` is the reference im
|
||||
- **`mesh.RecalculateTangents()` is mandatory** — a tangent-less procedural skinned mesh fails Rukhanka/BRG registration (`BatchMeshID not present`) and the WHOLE rig disappears.
|
||||
- Persist rebased meshes as `Rebased_*.asset` (Clear+refill an existing asset = GUID-stable re-runs).
|
||||
- Emissive pieces: `ProjectM/EmissiveGloamSkinned` (hand-written HLSL + Rukhanka `ComputeDeformedVertex`; the DOTS-instanced `_DeformedMeshIndex` block must be declared BEFORE the include, and the property must ALSO be in the Properties block for the baker's `HasProperty` validation). BRG-only: invisible in plain classic scenes, correct in the baked ECS world.
|
||||
|
||||
## 14. AI-generated hero shape → conform to Synty (proven 07-24, Bathynaut Mark-V helmet)
|
||||
|
||||
When scripted `bmesh` primitives can't nail an **iconic organic hard-surface shape** (a classic diving helmet, an ornate boss horn) — repeated hand attempts read as "golf-ball / egg / blocky robot" — **generate the base shape with Hyper3D Rodin** (`generate_hyper3d_model_via_text` → poll → `import_generated_asset`), then **conform it to the LANTERN/Synty style**. Generation is a valid *modeling* path (like a kitbash); the output is raw clay, NOT a finished asset — it arrives photoreal, high-poly, meter-scale, single-textured, and **clashes hard** dropped next to the flat-shaded low-poly body. The conform pass is the real work:
|
||||
|
||||
**A. Watertight decimate — clean topology FIRST, then a GENTLE collapse.** A raw generated mesh has duplicate verts + loose geometry; an aggressive collapse (ratio ~0.10) on it **tears holes and shatters facets** (the operator will see it). Order matters:
|
||||
```python
|
||||
import bmesh
|
||||
bm=bmesh.new(); bm.from_mesh(h.data)
|
||||
bmesh.ops.remove_doubles(bm, verts=bm.verts, dist=0.0006) # weld
|
||||
bmesh.ops.recalc_face_normals(bm, faces=bm.faces)
|
||||
loose=[v for v in bm.verts if not v.link_faces]
|
||||
if loose: bmesh.ops.delete(bm, geom=loose, context='VERTS')
|
||||
bm.to_mesh(h.data); bm.free()
|
||||
d=h.modifiers.new("Dec","DECIMATE"); d.decimate_type='COLLAPSE'; d.ratio=0.26 # ~1k tris for a hero prop
|
||||
dg=bpy.context.evaluated_depsgraph_get(); h.data=bpy.data.meshes.new_from_object(h.evaluated_get(dg)); h.modifiers.clear()
|
||||
# HOLE DETECTOR: boundary edges (edges touching <2 faces). MUST be 0 = watertight.
|
||||
bm=bmesh.new(); bm.from_mesh(h.data); holes=sum(1 for e in bm.edges if len(e.link_faces)<2); bm.free()
|
||||
```
|
||||
23k→1.1k with 0 boundary edges reads as chunky Synty facets. If `holes>0`, the collapse was too aggressive for the cleanup — raise the ratio (gentler). Report tris vs budget.
|
||||
|
||||
**B. Kill the photoreal texture — flat palette color is the biggest tell.** The single baked albedo/PBR map (painted weathering, smooth metal highlights) is what makes it look "AI dropped on low-poly." **Discard the imported material** and re-paint the mesh with the scene's **OWN shared palette materials** (assign by face region → guaranteed cohesion, literally the same material asset). Set **flat/faceted shading** (`for p in mesh.polygons: p.use_smooth=False`) so each plane reads as a facet. Region-assign by world-space geometry on the *decimated* mesh (fewer faces = cleaner colour blocks):
|
||||
```python
|
||||
h.data.materials.clear()
|
||||
for m in (brass, gunmetal, glass): h.data.materials.append(m) # reuse the suit/scene's flat mats
|
||||
mw=h.matrix_world; bm=bmesh.new(); bm.from_mesh(h.data); bm.faces.ensure_lookup_table(); bm.verts.ensure_lookup_table()
|
||||
zs=[(mw@v.co).z for v in bm.verts]; zmin,zmax=min(zs),max(zs); zh=zmax-zmin
|
||||
port=mathutils.Vector((0,-0.15,1.68)) # feature centre in WORLD space
|
||||
for f in bm.faces:
|
||||
c=mw@f.calc_center_median(); n=(mw.to_3x3()@f.normal).normalized(); vz=[(mw@v.co).z for v in f.verts]
|
||||
s=0 # brass body (dominant)
|
||||
if min(vz)>zmax-zh*0.085 or max(vz)<zmin+zh*0.11: s=1 # top knob / bottom collar = accent (all-verts test = clean band)
|
||||
d=(c-port).length
|
||||
if n.y<-0.25 and d<0.10: s=2 if d<0.072 else 1 # front-facing near feature: inner disc glass, ring bezel
|
||||
f.material_index=s; f.smooth=False
|
||||
bm.to_mesh(h.data); bm.free()
|
||||
```
|
||||
Tie any emissive to the **ontology** (the helmet porthole = teal glass, faint glow ~0.5 → reads as the same bioluminescent palette as the flora/enemy-eyes, not a competing warm light — the shoulder lamp carries "our light"). Use `min/max(vert-z)` (all verts in/out) for clean bands, not face-centre thresholds (torn edges on a dense mesh).
|
||||
|
||||
**C. Scale gotcha — generated meshes are METER-scale; a cm-scale rig shrinks a skinned attachment ~100×.** Rodin exports ~1–2 m meshes; the Synty suit rig is cm-scale (0.01 armature). Skinning the generated piece to a bone applies the armature's 0.01 → it imports at **~5 mm (invisible)** with a wrong bindpose. For a rigid accessory (helmet, pack) **do NOT skin it** — drop the armature modifier + vgroups, `parent=None`, and set a plain `scale` so it sits at the feature's world size (a 1.7-unit generated mesh × 0.25 = ~0.42 m = head-sized). It rides the bone rigidly in-engine (Unity-side: parent the GO to the `Head` bone, §13 covers the skinned path when you DO want deform).
|
||||
|
||||
**D. Judge cohesion in-engine, at game scale, next to the existing Synty assets.** A generated mesh that looks fine solo can still clash beside the low-poly body — the only true test is a Play capture with the character next to its neighbours (the suit, an enemy) at the real game framing (§9). The Blender render confirms the mesh is clean; the *style match* is an in-engine, next-to-siblings call.
|
||||
|
||||
Recipe verified on the Mark-V: 4 hand-model attempts failed → Rodin generate → clean-decimate 23k→1.1k (0 holes) → drop the copper photoreal map → flat `M_Diver_Brass`/`HelmetMetal` + a teal `M_Diver_Porthole` + flat-shade → reads as one cohesive Synty diver (operator-approved). GLB 1.7 MB → 736 KB (texture dropped).
|
||||
|
||||
**E. ★ Coloring on the GAMEPLAY (deformation) rig ≠ staging — flat `_BaseColor` FAILS.** A static staging mesh takes flat colour from the material `_BaseColor` (plain Principled / the `Skinned-Palette` graph). But the animated player/enemy render entities carry a **per-instance `URPMaterialPropertyBaseColor` override** (driven by the hit-flash system, set to `(1,1,1)` at rest) which **REPLACES** the material's `_BaseColor` — so a flat-`_BaseColor` material with `_BaseColorMap = null` renders **white/cream** (null map samples white × instance-white). (This corrects the older "clear `_BaseColorMap` → uses `_BaseColor` directly" note — that only holds for entities WITHOUT the per-instance override.) Fix: drive colour from `_BaseColorMap` — either UV the piece to a `PaletteAtlas` band, or assign a **solid-colour texture** (an 8×8 PNG of the target colour) as `_BaseColorMap` and leave `_BaseColor` white; the instance override then just multiplies (and the flash still tints correctly). Diagnose by reading the live entity: `EntityManager.HasComponent<URPMaterialPropertyBaseColor>` on the `LinkedEntityGroup` render children → if present and `(1,1,1)`, the material `_BaseColor` is dead, use a map. Per-submesh colour (e.g. the Mark-V's brass/gunmetal/glass) = one material per submesh, each with its own solid `_BaseColorMap`. Verified live: `M_Diver_*_Skinned` + `DiverTex/T_Diver_*.png` on `Player.prefab`.
|
||||
|
||||
@@ -13,7 +13,7 @@ Two rules apply to every pattern here:
|
||||
Three read-only lens agents in `parallel()`; the orchestrator synthesizes the ≤400-word Project Brief and discards the raw returns.
|
||||
|
||||
**A1 — Code/asset graph (read-only).**
|
||||
> Map the code surface relevant to `{goal}`. Prefer serena `find_symbol`/`find_referencing_symbols`; if serena's C# LSP stalls on the Unity solution, use `Glob`/`Grep` on `Assets/_Project/**/*.cs` + `**/*.asmdef`. Identify the existing components/systems/bakers touching `{surface}`, the asmdef each lives in (Simulation / Client / Server / Authoring), and any `*Math.cs` helper or system you'd otherwise duplicate. `manage_scene get_hierarchy` for relevant subscenes. Return a terse symbol/asmdef map (names + paths), not file dumps.
|
||||
> Map the code surface relevant to `{goal}`. Use `Glob`/`Grep` on `Assets/_Project/**/*.cs` + `**/*.asmdef` (serena was removed 2026-07-07 — C# nav is Glob/Grep). Identify the existing components/systems/bakers touching `{surface}`, the asmdef each lives in (Simulation / Client / Server / Authoring), and any `*Math.cs` helper or system you'd otherwise duplicate. `manage_scene get_hierarchy` for relevant subscenes. Return a terse symbol/asmdef map (names + paths), not file dumps.
|
||||
|
||||
**A2 — Knowledge state (read-only).**
|
||||
> Search the in-repo vault (obsidian-cli) and `basic-memory` for design docs, decision records, and notes touching `{goal}`. Return: relevant doc paths, any **locked** decisions that constrain `{goal}`, open questions already recorded. Quote ≤2 load-bearing lines each; link by path otherwise.
|
||||
|
||||
@@ -85,6 +85,8 @@ Packages/packages-lock.json linguist-generated
|
||||
*.dxf lfs
|
||||
*.FBX lfs
|
||||
*.fbx lfs
|
||||
*.glb lfs
|
||||
*.gltf lfs
|
||||
*.jas lfs
|
||||
*.lws lfs
|
||||
*.lxo lfs
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,8 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: fb9805e89b33016429ecef6845f4a792
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -1,193 +0,0 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: M_Antena
|
||||
m_Shader: {fileID: -6465566751694194690, guid: bb2b9fd294686ac489b6c02ab0921e98,
|
||||
type: 3}
|
||||
m_ValidKeywords:
|
||||
- _ALPHATEST_ON
|
||||
- _DISABLE_SSR_TRANSPARENT
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 1
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: 2475
|
||||
stringTagMap:
|
||||
MotionVector: User
|
||||
RenderType: TransparentCutout
|
||||
disabledShaderPasses:
|
||||
- TransparentDepthPrepass
|
||||
- TransparentDepthPostpass
|
||||
- TransparentBackface
|
||||
- RayTracingPrepass
|
||||
- MOTIONVECTORS
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _AlphaClipping:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BaseTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000007571880124398776818, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MaskTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NormalTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000016874856597446870814, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ORMTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000000539377750397802808, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SecondTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _Texture2DAsset_50d8aa134ded4f3ba8216b2c6da2550a_Out_0:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000011191443335310782487, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _WorldAlignTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _A_Dirt: 0
|
||||
- _A_Edge: 0
|
||||
- _A_Mask: 0
|
||||
- _AddPrecomputedVelocity: 0
|
||||
- _AddSecondNormal: 0
|
||||
- _AlphaCutoffEnable: 1
|
||||
- _AlphaDstBlend: 0
|
||||
- _AlphaOpacity: 0.75
|
||||
- _AlphaSrcBlend: 1
|
||||
- _AlphaToMask: 0
|
||||
- _AlphaToMaskInspectorValue: 0
|
||||
- _AlphaTreshold: 0.45
|
||||
- _B_Dirt: 0
|
||||
- _B_Edge: 0
|
||||
- _B_Mask: 0
|
||||
- _BaseColorMultiply: 1
|
||||
- _BlendMode: 0
|
||||
- _ChangeInstantColor_1: 0
|
||||
- _ConservativeDepthOffsetEnable: 0
|
||||
- _CullMode: 2
|
||||
- _CullModeForward: 2
|
||||
- _DepthOffsetEnable: 0
|
||||
- _Dirt_Intensity: 0.5
|
||||
- _DoubleSidedEnable: 0
|
||||
- _DoubleSidedGIMode: 0
|
||||
- _DoubleSidedNormalMode: 2
|
||||
- _DstBlend: 0
|
||||
- _Edges_Intensity: 1
|
||||
- _Emissive: 1
|
||||
- _EmissiveIntensity: 1
|
||||
- _EnableBlendModePreserveSpecularLighting: 1
|
||||
- _EnableDirt: 0
|
||||
- _EnableEdge: 0
|
||||
- _EnableFogOnTransparent: 1
|
||||
- _G_Dirt: 0
|
||||
- _G_Edge: 0
|
||||
- _G_Mask: 0
|
||||
- _MaskAdjustment: 1
|
||||
- _MetallicIntensity: 0.82
|
||||
- _NormalIntensity: 1
|
||||
- _OpaqueCullMode: 2
|
||||
- _PomHeight: 1
|
||||
- _PomQuality: 32
|
||||
- _R_Dirt: 0
|
||||
- _R_Edge: 0
|
||||
- _R_Mask: 0
|
||||
- _RayTracing: 0
|
||||
- _ReceivesSSR: 1
|
||||
- _ReceivesSSRTransparent: 0
|
||||
- _RefractionModel: 0
|
||||
- _RenderQueueType: 1
|
||||
- _RequireSplitLighting: 0
|
||||
- _Saturation: 1
|
||||
- _SaturationWorldAlign: 1
|
||||
- _SecondNormalTile: 4.68
|
||||
- _SecondTextureColorMultiply: 1
|
||||
- _SmoothnessIntensity: 0.86
|
||||
- _SrcBlend: 1
|
||||
- _StencilRef: 0
|
||||
- _StencilRefDepth: 8
|
||||
- _StencilRefDistortionVec: 4
|
||||
- _StencilRefGBuffer: 10
|
||||
- _StencilRefMV: 40
|
||||
- _StencilWriteMask: 6
|
||||
- _StencilWriteMaskDepth: 8
|
||||
- _StencilWriteMaskDistortionVec: 4
|
||||
- _StencilWriteMaskGBuffer: 14
|
||||
- _StencilWriteMaskMV: 40
|
||||
- _SupportDecals: 1
|
||||
- _SurfaceType: 0
|
||||
- _TransparentBackfaceEnable: 0
|
||||
- _TransparentCullMode: 2
|
||||
- _TransparentDepthPostpassEnable: 0
|
||||
- _TransparentDepthPrepassEnable: 0
|
||||
- _TransparentSortPriority: 0
|
||||
- _TransparentWritingMotionVec: 0
|
||||
- _TransparentZWrite: 0
|
||||
- _UV_Tiling: 1
|
||||
- _UseAlphaClipping: 0
|
||||
- _UseInstantColor: 0
|
||||
- _UsePom: 0
|
||||
- _UseShadowThreshold: 0
|
||||
- _UseWorldAlign: 0
|
||||
- _WorldAlignTile: 512
|
||||
- _ZTestDepthEqualForOpaque: 3
|
||||
- _ZTestGBuffer: 3
|
||||
- _ZTestTransparent: 4
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _AlbedoTint: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _ChangeInstantColor: {r: 0.6320754, g: 0.6320754, b: 0.6320754, a: 0}
|
||||
- _Dirt_Color: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _DoubleSidedConstants: {r: 1, g: 1, b: -1, a: 0}
|
||||
- _EdgeColor: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _EmissionColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _EmissiveColor: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _PomOffset: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _SecondColorMultiply: {r: 1, g: 1, b: 1, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
--- !u!114 &3696197708043593277
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 12
|
||||
hdPluginSubTargetMaterialVersions:
|
||||
m_Keys: []
|
||||
m_Values:
|
||||
@@ -1,15 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 3bb45fd0e9b4e4c4b8b7f44efd6c28cf
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 330726
|
||||
packageName: Orbital Base Environment
|
||||
packageVersion: 1.0
|
||||
assetPath: Assets/BefourStudios/Art/Materials/M_Antena.mat
|
||||
uploadId: 782779
|
||||
@@ -1,131 +0,0 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: M_AwningEmissive
|
||||
m_Shader: {fileID: -6465566751694194690, guid: 51458277ecdce9840931ccf18c998dff,
|
||||
type: 3}
|
||||
m_ValidKeywords:
|
||||
- _DISABLE_SSR_TRANSPARENT
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 1
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: 2225
|
||||
stringTagMap:
|
||||
MotionVector: User
|
||||
disabledShaderPasses:
|
||||
- TransparentDepthPrepass
|
||||
- TransparentDepthPostpass
|
||||
- TransparentBackface
|
||||
- RayTracingPrepass
|
||||
- MOTIONVECTORS
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _Screen_Masks_Texture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000012568437513687506022, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _AddPrecomputedVelocity: 0
|
||||
- _AlphaCutoffEnable: 0
|
||||
- _AlphaDstBlend: 0
|
||||
- _AlphaSrcBlend: 1
|
||||
- _AlphaToMask: 0
|
||||
- _AlphaToMaskInspectorValue: 0
|
||||
- _B_Channel_Mask: 0
|
||||
- _BlendMode: 0
|
||||
- _Blinking_Frequency: 0
|
||||
- _ConservativeDepthOffsetEnable: 0
|
||||
- _CullMode: 2
|
||||
- _CullModeForward: 2
|
||||
- _DepthOffsetEnable: 0
|
||||
- _DisableScreen: 1
|
||||
- _DoubleSidedEnable: 0
|
||||
- _DoubleSidedGIMode: 0
|
||||
- _DoubleSidedNormalMode: 2
|
||||
- _DstBlend: 0
|
||||
- _Emissive_Blinking: 0
|
||||
- _EnableBlendModePreserveSpecularLighting: 1
|
||||
- _EnableFogOnTransparent: 1
|
||||
- _G_Channel_Mask: 0
|
||||
- _Intensity: 5
|
||||
- _Intensity_1: 7.21
|
||||
- _Intensity_2: 8.8
|
||||
- _OpaqueCullMode: 2
|
||||
- _R_Channel_Mask: 0
|
||||
- _Random_Blinking_Offset: 0
|
||||
- _RayTracing: 0
|
||||
- _ReceivesSSR: 1
|
||||
- _ReceivesSSRTransparent: 0
|
||||
- _RefractionModel: 0
|
||||
- _RenderQueueType: 1
|
||||
- _RequireSplitLighting: 0
|
||||
- _SrcBlend: 1
|
||||
- _StencilRef: 0
|
||||
- _StencilRefDepth: 8
|
||||
- _StencilRefDistortionVec: 4
|
||||
- _StencilRefGBuffer: 10
|
||||
- _StencilRefMV: 40
|
||||
- _StencilWriteMask: 6
|
||||
- _StencilWriteMaskDepth: 8
|
||||
- _StencilWriteMaskDistortionVec: 4
|
||||
- _StencilWriteMaskGBuffer: 14
|
||||
- _StencilWriteMaskMV: 40
|
||||
- _SupportDecals: 1
|
||||
- _SurfaceType: 0
|
||||
- _TileScreen: 59.2
|
||||
- _TransparentBackfaceEnable: 0
|
||||
- _TransparentCullMode: 2
|
||||
- _TransparentDepthPostpassEnable: 0
|
||||
- _TransparentDepthPrepassEnable: 0
|
||||
- _TransparentSortPriority: 0
|
||||
- _TransparentWritingMotionVec: 0
|
||||
- _TransparentZWrite: 0
|
||||
- _UseShadowThreshold: 0
|
||||
- _ZTestDepthEqualForOpaque: 3
|
||||
- _ZTestGBuffer: 4
|
||||
- _ZTestTransparent: 4
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _Color1: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _Color2: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _ColorEmissive: {r: 1, g: 0.7496486, b: 0.5235849, a: 0}
|
||||
- _DoubleSidedConstants: {r: 1, g: 1, b: -1, a: 0}
|
||||
- _EmissionColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
m_BuildTextureStacks: []
|
||||
--- !u!114 &6453071541595441578
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 12
|
||||
hdPluginSubTargetMaterialVersions:
|
||||
m_Keys: []
|
||||
m_Values:
|
||||
@@ -1,15 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 1937c5cfe4a316f46b4af83688e2ed2b
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 330726
|
||||
packageName: Orbital Base Environment
|
||||
packageVersion: 1.0
|
||||
assetPath: Assets/BefourStudios/Art/Materials/M_AwningEmissive.mat
|
||||
uploadId: 782779
|
||||
@@ -1,270 +0,0 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: M_AwningGlass
|
||||
m_Shader: {fileID: 4800000, guid: 6e4ae4064600d784cac1e41a9e6f2e59, type: 3}
|
||||
m_ValidKeywords:
|
||||
- _DISABLE_SSR_TRANSPARENT
|
||||
- _ENABLE_FOG_ON_TRANSPARENT
|
||||
- _NORMALMAP
|
||||
- _NORMALMAP_TANGENT_SPACE
|
||||
- _SURFACE_TYPE_TRANSPARENT
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: 3000
|
||||
stringTagMap:
|
||||
RenderType: Transparent
|
||||
disabledShaderPasses:
|
||||
- TransparentDepthPrepass
|
||||
- TransparentDepthPostpass
|
||||
- TransparentBackface
|
||||
- RayTracingPrepass
|
||||
- MOTIONVECTORS
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _AnisotropyMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BaseColorMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BentNormalMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BentNormalMapOS:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _CoatMaskMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _EmissiveColorMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _HeightMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _IridescenceMaskMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _IridescenceThicknessMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MainTex:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MaskMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NormalMap:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000000211747456392771713, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NormalMapOS:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SpecularColorMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SubsurfaceMaskMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _TangentMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _TangentMapOS:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ThicknessMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _TransmittanceColorMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _AORemapMax: 1
|
||||
- _AORemapMin: 0
|
||||
- _ATDistance: 1
|
||||
- _AddPrecomputedVelocity: 0
|
||||
- _AlbedoAffectEmissive: 0
|
||||
- _AlphaCutoff: 0.5
|
||||
- _AlphaCutoffEnable: 0
|
||||
- _AlphaCutoffPostpass: 0.5
|
||||
- _AlphaCutoffPrepass: 0.5
|
||||
- _AlphaCutoffShadow: 0.5
|
||||
- _AlphaDstBlend: 10
|
||||
- _AlphaSrcBlend: 1
|
||||
- _AlphaToMask: 0
|
||||
- _AlphaToMaskInspectorValue: 0
|
||||
- _Anisotropy: 0
|
||||
- _BlendMode: 0
|
||||
- _CoatMask: 0
|
||||
- _CullMode: 2
|
||||
- _CullModeForward: 2
|
||||
- _Cutoff: 0.5
|
||||
- _DepthOffsetEnable: 0
|
||||
- _DetailAlbedoScale: 1
|
||||
- _DetailNormalScale: 1
|
||||
- _DetailSmoothnessScale: 1
|
||||
- _DiffusionProfile: 0
|
||||
- _DiffusionProfileHash: 0
|
||||
- _DisplacementLockObjectScale: 1
|
||||
- _DisplacementLockTilingScale: 1
|
||||
- _DisplacementMode: 0
|
||||
- _DoubleSidedEnable: 0
|
||||
- _DoubleSidedGIMode: 0
|
||||
- _DoubleSidedNormalMode: 1
|
||||
- _DstBlend: 10
|
||||
- _EmissiveColorMode: 1
|
||||
- _EmissiveExposureWeight: 1
|
||||
- _EmissiveIntensity: 1
|
||||
- _EmissiveIntensityUnit: 0
|
||||
- _EnableBlendModePreserveSpecularLighting: 1
|
||||
- _EnableFogOnTransparent: 1
|
||||
- _EnableGeometricSpecularAA: 0
|
||||
- _EnergyConservingSpecularColor: 1
|
||||
- _HeightAmplitude: 0.02
|
||||
- _HeightCenter: 0.5
|
||||
- _HeightMapParametrization: 0
|
||||
- _HeightMax: 1
|
||||
- _HeightMin: -1
|
||||
- _HeightOffset: 0
|
||||
- _HeightPoMAmplitude: 2
|
||||
- _HeightTessAmplitude: 2
|
||||
- _HeightTessCenter: 0.5
|
||||
- _InvTilingScale: 1
|
||||
- _Ior: 1.5
|
||||
- _IridescenceMask: 1
|
||||
- _IridescenceThickness: 1
|
||||
- _LinkDetailsWithBase: 1
|
||||
- _MaterialID: 1
|
||||
- _Metallic: 0.302
|
||||
- _MetallicRemapMax: 1
|
||||
- _MetallicRemapMin: 0
|
||||
- _NormalMapSpace: 0
|
||||
- _NormalScale: 1.46
|
||||
- _OpaqueCullMode: 2
|
||||
- _PPDLodThreshold: 5
|
||||
- _PPDMaxSamples: 15
|
||||
- _PPDMinSamples: 5
|
||||
- _PPDPrimitiveLength: 1
|
||||
- _PPDPrimitiveWidth: 1
|
||||
- _RayTracing: 0
|
||||
- _ReceivesSSR: 1
|
||||
- _ReceivesSSRTransparent: 0
|
||||
- _RefractionModel: 0
|
||||
- _Smoothness: 0.847
|
||||
- _SmoothnessRemapMax: 1
|
||||
- _SmoothnessRemapMin: 0
|
||||
- _SpecularAAScreenSpaceVariance: 0.1
|
||||
- _SpecularAAThreshold: 0.2
|
||||
- _SpecularOcclusionMode: 1
|
||||
- _SrcBlend: 1
|
||||
- _StencilRef: 0
|
||||
- _StencilRefDepth: 0
|
||||
- _StencilRefGBuffer: 2
|
||||
- _StencilRefMV: 32
|
||||
- _StencilWriteMask: 6
|
||||
- _StencilWriteMaskDepth: 8
|
||||
- _StencilWriteMaskGBuffer: 14
|
||||
- _StencilWriteMaskMV: 40
|
||||
- _SubsurfaceMask: 1
|
||||
- _SupportDecals: 1
|
||||
- _SurfaceType: 1
|
||||
- _TexWorldScale: 1
|
||||
- _TexWorldScaleEmissive: 1
|
||||
- _Thickness: 1
|
||||
- _TransmissionEnable: 1
|
||||
- _TransparentBackfaceEnable: 0
|
||||
- _TransparentCullMode: 2
|
||||
- _TransparentDepthPostpassEnable: 0
|
||||
- _TransparentDepthPrepassEnable: 0
|
||||
- _TransparentSortPriority: 0
|
||||
- _TransparentWritingMotionVec: 0
|
||||
- _TransparentZWrite: 0
|
||||
- _UVBase: 0
|
||||
- _UVDetail: 0
|
||||
- _UVEmissive: 0
|
||||
- _UseEmissiveIntensity: 0
|
||||
- _UseShadowThreshold: 0
|
||||
- _ZTestDepthEqualForOpaque: 4
|
||||
- _ZTestGBuffer: 4
|
||||
- _ZTestTransparent: 4
|
||||
- _ZWrite: 0
|
||||
m_Colors:
|
||||
- _BaseColor: {r: 0.5980331, g: 0.7297751, b: 0.8396226, a: 0}
|
||||
- _BaseColorMap_MipInfo: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _Color: {r: 0.598033, g: 0.7297751, b: 0.8396226, a: 0}
|
||||
- _DiffusionProfileAsset: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _DoubleSidedConstants: {r: 1, g: 1, b: -1, a: 0}
|
||||
- _EmissionColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _EmissiveColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _EmissiveColorLDR: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _InvPrimScale: {r: 1, g: 1, b: 0, a: 0}
|
||||
- _IridescenceThicknessRemap: {r: 0, g: 1, b: 0, a: 0}
|
||||
- _SpecularColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _ThicknessRemap: {r: 0, g: 1, b: 0, a: 0}
|
||||
- _TransmittanceColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _UVDetailsMappingMask: {r: 1, g: 0, b: 0, a: 0}
|
||||
- _UVMappingMask: {r: 1, g: 0, b: 0, a: 0}
|
||||
- _UVMappingMaskEmissive: {r: 1, g: 0, b: 0, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
--- !u!114 &1272734667632820268
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 12
|
||||
hdPluginSubTargetMaterialVersions:
|
||||
m_Keys: []
|
||||
m_Values:
|
||||
@@ -1,15 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 84ad9ac4c34e44249a2c930a23722a86
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 330726
|
||||
packageName: Orbital Base Environment
|
||||
packageVersion: 1.0
|
||||
assetPath: Assets/BefourStudios/Art/Materials/M_AwningGlass.mat
|
||||
uploadId: 782779
|
||||
@@ -1,193 +0,0 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: M_AwningMetal
|
||||
m_Shader: {fileID: -6465566751694194690, guid: bb2b9fd294686ac489b6c02ab0921e98,
|
||||
type: 3}
|
||||
m_ValidKeywords:
|
||||
- _ALPHATEST_ON
|
||||
- _DISABLE_SSR_TRANSPARENT
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 1
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: 2475
|
||||
stringTagMap:
|
||||
MotionVector: User
|
||||
RenderType: TransparentCutout
|
||||
disabledShaderPasses:
|
||||
- TransparentDepthPrepass
|
||||
- TransparentDepthPostpass
|
||||
- TransparentBackface
|
||||
- RayTracingPrepass
|
||||
- MOTIONVECTORS
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _AlphaClipping:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BaseTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000000383215284019181022, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MaskTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NormalTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000009282099654893926322, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ORMTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000017457670874096172532, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SecondTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _Texture2DAsset_50d8aa134ded4f3ba8216b2c6da2550a_Out_0:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000011191443335310782487, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _WorldAlignTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _A_Dirt: 0
|
||||
- _A_Edge: 0
|
||||
- _A_Mask: 0
|
||||
- _AddPrecomputedVelocity: 0
|
||||
- _AddSecondNormal: 0
|
||||
- _AlphaCutoffEnable: 1
|
||||
- _AlphaDstBlend: 0
|
||||
- _AlphaOpacity: 0.75
|
||||
- _AlphaSrcBlend: 1
|
||||
- _AlphaToMask: 0
|
||||
- _AlphaToMaskInspectorValue: 0
|
||||
- _AlphaTreshold: 0.45
|
||||
- _B_Dirt: 0
|
||||
- _B_Edge: 0
|
||||
- _B_Mask: 0
|
||||
- _BaseColorMultiply: 1
|
||||
- _BlendMode: 0
|
||||
- _ChangeInstantColor_1: 0
|
||||
- _ConservativeDepthOffsetEnable: 0
|
||||
- _CullMode: 2
|
||||
- _CullModeForward: 2
|
||||
- _DepthOffsetEnable: 0
|
||||
- _Dirt_Intensity: 0.5
|
||||
- _DoubleSidedEnable: 0
|
||||
- _DoubleSidedGIMode: 0
|
||||
- _DoubleSidedNormalMode: 2
|
||||
- _DstBlend: 0
|
||||
- _Edges_Intensity: 1
|
||||
- _Emissive: 0
|
||||
- _EmissiveIntensity: 1
|
||||
- _EnableBlendModePreserveSpecularLighting: 1
|
||||
- _EnableDirt: 0
|
||||
- _EnableEdge: 0
|
||||
- _EnableFogOnTransparent: 1
|
||||
- _G_Dirt: 0
|
||||
- _G_Edge: 0
|
||||
- _G_Mask: 0
|
||||
- _MaskAdjustment: 1
|
||||
- _MetallicIntensity: 0.75
|
||||
- _NormalIntensity: 1
|
||||
- _OpaqueCullMode: 2
|
||||
- _PomHeight: 1
|
||||
- _PomQuality: 32
|
||||
- _R_Dirt: 0
|
||||
- _R_Edge: 0
|
||||
- _R_Mask: 0
|
||||
- _RayTracing: 0
|
||||
- _ReceivesSSR: 1
|
||||
- _ReceivesSSRTransparent: 0
|
||||
- _RefractionModel: 0
|
||||
- _RenderQueueType: 1
|
||||
- _RequireSplitLighting: 0
|
||||
- _Saturation: 1
|
||||
- _SaturationWorldAlign: 1
|
||||
- _SecondNormalTile: 4.68
|
||||
- _SecondTextureColorMultiply: 1
|
||||
- _SmoothnessIntensity: 1.05
|
||||
- _SrcBlend: 1
|
||||
- _StencilRef: 0
|
||||
- _StencilRefDepth: 8
|
||||
- _StencilRefDistortionVec: 4
|
||||
- _StencilRefGBuffer: 10
|
||||
- _StencilRefMV: 40
|
||||
- _StencilWriteMask: 6
|
||||
- _StencilWriteMaskDepth: 8
|
||||
- _StencilWriteMaskDistortionVec: 4
|
||||
- _StencilWriteMaskGBuffer: 14
|
||||
- _StencilWriteMaskMV: 40
|
||||
- _SupportDecals: 1
|
||||
- _SurfaceType: 0
|
||||
- _TransparentBackfaceEnable: 0
|
||||
- _TransparentCullMode: 2
|
||||
- _TransparentDepthPostpassEnable: 0
|
||||
- _TransparentDepthPrepassEnable: 0
|
||||
- _TransparentSortPriority: 0
|
||||
- _TransparentWritingMotionVec: 0
|
||||
- _TransparentZWrite: 0
|
||||
- _UV_Tiling: 1
|
||||
- _UseAlphaClipping: 0
|
||||
- _UseInstantColor: 0
|
||||
- _UsePom: 0
|
||||
- _UseShadowThreshold: 0
|
||||
- _UseWorldAlign: 0
|
||||
- _WorldAlignTile: 512
|
||||
- _ZTestDepthEqualForOpaque: 3
|
||||
- _ZTestGBuffer: 3
|
||||
- _ZTestTransparent: 4
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _AlbedoTint: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _ChangeInstantColor: {r: 0.6320754, g: 0.6320754, b: 0.6320754, a: 0}
|
||||
- _Dirt_Color: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _DoubleSidedConstants: {r: 1, g: 1, b: -1, a: 0}
|
||||
- _EdgeColor: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _EmissionColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _EmissiveColor: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _PomOffset: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _SecondColorMultiply: {r: 1, g: 1, b: 1, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
--- !u!114 &3696197708043593277
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 12
|
||||
hdPluginSubTargetMaterialVersions:
|
||||
m_Keys: []
|
||||
m_Values:
|
||||
@@ -1,15 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 5a3f060abb33a9d40b27e837fc5fcc42
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 330726
|
||||
packageName: Orbital Base Environment
|
||||
packageVersion: 1.0
|
||||
assetPath: Assets/BefourStudios/Art/Materials/M_AwningMetal.mat
|
||||
uploadId: 782779
|
||||
@@ -1,193 +0,0 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: M_AwningSupport
|
||||
m_Shader: {fileID: -6465566751694194690, guid: bb2b9fd294686ac489b6c02ab0921e98,
|
||||
type: 3}
|
||||
m_ValidKeywords:
|
||||
- _ALPHATEST_ON
|
||||
- _DISABLE_SSR_TRANSPARENT
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 1
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: 2475
|
||||
stringTagMap:
|
||||
MotionVector: User
|
||||
RenderType: TransparentCutout
|
||||
disabledShaderPasses:
|
||||
- TransparentDepthPrepass
|
||||
- TransparentDepthPostpass
|
||||
- TransparentBackface
|
||||
- RayTracingPrepass
|
||||
- MOTIONVECTORS
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _AlphaClipping:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BaseTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000015869918647661296526, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MaskTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NormalTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000006374980823677415138, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ORMTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000003461008725073567364, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SecondTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _Texture2DAsset_50d8aa134ded4f3ba8216b2c6da2550a_Out_0:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000011191443335310782487, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _WorldAlignTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _A_Dirt: 0
|
||||
- _A_Edge: 0
|
||||
- _A_Mask: 0
|
||||
- _AddPrecomputedVelocity: 0
|
||||
- _AddSecondNormal: 0
|
||||
- _AlphaCutoffEnable: 1
|
||||
- _AlphaDstBlend: 0
|
||||
- _AlphaOpacity: 0.75
|
||||
- _AlphaSrcBlend: 1
|
||||
- _AlphaToMask: 0
|
||||
- _AlphaToMaskInspectorValue: 0
|
||||
- _AlphaTreshold: 0.45
|
||||
- _B_Dirt: 0
|
||||
- _B_Edge: 0
|
||||
- _B_Mask: 0
|
||||
- _BaseColorMultiply: 1
|
||||
- _BlendMode: 0
|
||||
- _ChangeInstantColor_1: 0
|
||||
- _ConservativeDepthOffsetEnable: 0
|
||||
- _CullMode: 2
|
||||
- _CullModeForward: 2
|
||||
- _DepthOffsetEnable: 0
|
||||
- _Dirt_Intensity: 0.5
|
||||
- _DoubleSidedEnable: 0
|
||||
- _DoubleSidedGIMode: 0
|
||||
- _DoubleSidedNormalMode: 2
|
||||
- _DstBlend: 0
|
||||
- _Edges_Intensity: 1
|
||||
- _Emissive: 0
|
||||
- _EmissiveIntensity: 1
|
||||
- _EnableBlendModePreserveSpecularLighting: 1
|
||||
- _EnableDirt: 0
|
||||
- _EnableEdge: 0
|
||||
- _EnableFogOnTransparent: 1
|
||||
- _G_Dirt: 0
|
||||
- _G_Edge: 0
|
||||
- _G_Mask: 0
|
||||
- _MaskAdjustment: 1
|
||||
- _MetallicIntensity: 0.75
|
||||
- _NormalIntensity: 1
|
||||
- _OpaqueCullMode: 2
|
||||
- _PomHeight: 1
|
||||
- _PomQuality: 32
|
||||
- _R_Dirt: 0
|
||||
- _R_Edge: 0
|
||||
- _R_Mask: 0
|
||||
- _RayTracing: 0
|
||||
- _ReceivesSSR: 1
|
||||
- _ReceivesSSRTransparent: 0
|
||||
- _RefractionModel: 0
|
||||
- _RenderQueueType: 1
|
||||
- _RequireSplitLighting: 0
|
||||
- _Saturation: 1
|
||||
- _SaturationWorldAlign: 1
|
||||
- _SecondNormalTile: 4.68
|
||||
- _SecondTextureColorMultiply: 1
|
||||
- _SmoothnessIntensity: 1.05
|
||||
- _SrcBlend: 1
|
||||
- _StencilRef: 0
|
||||
- _StencilRefDepth: 8
|
||||
- _StencilRefDistortionVec: 4
|
||||
- _StencilRefGBuffer: 10
|
||||
- _StencilRefMV: 40
|
||||
- _StencilWriteMask: 6
|
||||
- _StencilWriteMaskDepth: 8
|
||||
- _StencilWriteMaskDistortionVec: 4
|
||||
- _StencilWriteMaskGBuffer: 14
|
||||
- _StencilWriteMaskMV: 40
|
||||
- _SupportDecals: 1
|
||||
- _SurfaceType: 0
|
||||
- _TransparentBackfaceEnable: 0
|
||||
- _TransparentCullMode: 2
|
||||
- _TransparentDepthPostpassEnable: 0
|
||||
- _TransparentDepthPrepassEnable: 0
|
||||
- _TransparentSortPriority: 0
|
||||
- _TransparentWritingMotionVec: 0
|
||||
- _TransparentZWrite: 0
|
||||
- _UV_Tiling: 1
|
||||
- _UseAlphaClipping: 0
|
||||
- _UseInstantColor: 0
|
||||
- _UsePom: 0
|
||||
- _UseShadowThreshold: 0
|
||||
- _UseWorldAlign: 0
|
||||
- _WorldAlignTile: 512
|
||||
- _ZTestDepthEqualForOpaque: 3
|
||||
- _ZTestGBuffer: 3
|
||||
- _ZTestTransparent: 4
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _AlbedoTint: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _ChangeInstantColor: {r: 0.6320754, g: 0.6320754, b: 0.6320754, a: 0}
|
||||
- _Dirt_Color: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _DoubleSidedConstants: {r: 1, g: 1, b: -1, a: 0}
|
||||
- _EdgeColor: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _EmissionColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _EmissiveColor: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _PomOffset: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _SecondColorMultiply: {r: 1, g: 1, b: 1, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
--- !u!114 &3696197708043593277
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 12
|
||||
hdPluginSubTargetMaterialVersions:
|
||||
m_Keys: []
|
||||
m_Values:
|
||||
@@ -1,15 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: c8127cc6c856fc145a5f9d097a7cdd08
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 330726
|
||||
packageName: Orbital Base Environment
|
||||
packageVersion: 1.0
|
||||
assetPath: Assets/BefourStudios/Art/Materials/M_AwningSupport.mat
|
||||
uploadId: 782779
|
||||
@@ -1,266 +0,0 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: M_BaseGray
|
||||
m_Shader: {fileID: 4800000, guid: 6e4ae4064600d784cac1e41a9e6f2e59, type: 3}
|
||||
m_ValidKeywords:
|
||||
- _DISABLE_SSR_TRANSPARENT
|
||||
- _NORMALMAP_TANGENT_SPACE
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: 2225
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses:
|
||||
- TransparentDepthPrepass
|
||||
- TransparentDepthPostpass
|
||||
- TransparentBackface
|
||||
- RayTracingPrepass
|
||||
- MOTIONVECTORS
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _AnisotropyMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BaseColorMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BentNormalMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BentNormalMapOS:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _CoatMaskMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _EmissiveColorMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _HeightMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _IridescenceMaskMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _IridescenceThicknessMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MainTex:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MaskMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NormalMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NormalMapOS:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SpecularColorMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SubsurfaceMaskMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _TangentMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _TangentMapOS:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ThicknessMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _TransmittanceColorMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _AORemapMax: 1
|
||||
- _AORemapMin: 0
|
||||
- _ATDistance: 1
|
||||
- _AddPrecomputedVelocity: 0
|
||||
- _AlbedoAffectEmissive: 0
|
||||
- _AlphaCutoff: 0.5
|
||||
- _AlphaCutoffEnable: 0
|
||||
- _AlphaCutoffPostpass: 0.5
|
||||
- _AlphaCutoffPrepass: 0.5
|
||||
- _AlphaCutoffShadow: 0.5
|
||||
- _AlphaDstBlend: 0
|
||||
- _AlphaSrcBlend: 1
|
||||
- _AlphaToMask: 0
|
||||
- _AlphaToMaskInspectorValue: 0
|
||||
- _Anisotropy: 0
|
||||
- _BlendMode: 0
|
||||
- _CoatMask: 0
|
||||
- _CullMode: 2
|
||||
- _CullModeForward: 2
|
||||
- _Cutoff: 0.5
|
||||
- _DepthOffsetEnable: 0
|
||||
- _DetailAlbedoScale: 1
|
||||
- _DetailNormalScale: 1
|
||||
- _DetailSmoothnessScale: 1
|
||||
- _DiffusionProfile: 0
|
||||
- _DiffusionProfileHash: 0
|
||||
- _DisplacementLockObjectScale: 1
|
||||
- _DisplacementLockTilingScale: 1
|
||||
- _DisplacementMode: 0
|
||||
- _DoubleSidedEnable: 0
|
||||
- _DoubleSidedGIMode: 0
|
||||
- _DoubleSidedNormalMode: 1
|
||||
- _DstBlend: 0
|
||||
- _EmissiveColorMode: 1
|
||||
- _EmissiveExposureWeight: 1
|
||||
- _EmissiveIntensity: 1
|
||||
- _EmissiveIntensityUnit: 0
|
||||
- _EnableBlendModePreserveSpecularLighting: 1
|
||||
- _EnableFogOnTransparent: 1
|
||||
- _EnableGeometricSpecularAA: 0
|
||||
- _EnergyConservingSpecularColor: 1
|
||||
- _HeightAmplitude: 0.02
|
||||
- _HeightCenter: 0.5
|
||||
- _HeightMapParametrization: 0
|
||||
- _HeightMax: 1
|
||||
- _HeightMin: -1
|
||||
- _HeightOffset: 0
|
||||
- _HeightPoMAmplitude: 2
|
||||
- _HeightTessAmplitude: 2
|
||||
- _HeightTessCenter: 0.5
|
||||
- _InvTilingScale: 1
|
||||
- _Ior: 1.5
|
||||
- _IridescenceMask: 1
|
||||
- _IridescenceThickness: 1
|
||||
- _LinkDetailsWithBase: 1
|
||||
- _MaterialID: 1
|
||||
- _Metallic: 0
|
||||
- _MetallicRemapMax: 1
|
||||
- _MetallicRemapMin: 0
|
||||
- _NormalMapSpace: 0
|
||||
- _NormalScale: 1
|
||||
- _OpaqueCullMode: 2
|
||||
- _PPDLodThreshold: 5
|
||||
- _PPDMaxSamples: 15
|
||||
- _PPDMinSamples: 5
|
||||
- _PPDPrimitiveLength: 1
|
||||
- _PPDPrimitiveWidth: 1
|
||||
- _RayTracing: 0
|
||||
- _ReceivesSSR: 1
|
||||
- _ReceivesSSRTransparent: 0
|
||||
- _RefractionModel: 0
|
||||
- _Smoothness: 0.5
|
||||
- _SmoothnessRemapMax: 1
|
||||
- _SmoothnessRemapMin: 0
|
||||
- _SpecularAAScreenSpaceVariance: 0.1
|
||||
- _SpecularAAThreshold: 0.2
|
||||
- _SpecularOcclusionMode: 1
|
||||
- _SrcBlend: 1
|
||||
- _StencilRef: 0
|
||||
- _StencilRefDepth: 8
|
||||
- _StencilRefGBuffer: 10
|
||||
- _StencilRefMV: 40
|
||||
- _StencilWriteMask: 6
|
||||
- _StencilWriteMaskDepth: 8
|
||||
- _StencilWriteMaskGBuffer: 14
|
||||
- _StencilWriteMaskMV: 40
|
||||
- _SubsurfaceMask: 1
|
||||
- _SupportDecals: 1
|
||||
- _SurfaceType: 0
|
||||
- _TexWorldScale: 1
|
||||
- _TexWorldScaleEmissive: 1
|
||||
- _Thickness: 1
|
||||
- _TransmissionEnable: 1
|
||||
- _TransparentBackfaceEnable: 0
|
||||
- _TransparentCullMode: 2
|
||||
- _TransparentDepthPostpassEnable: 0
|
||||
- _TransparentDepthPrepassEnable: 0
|
||||
- _TransparentSortPriority: 0
|
||||
- _TransparentWritingMotionVec: 0
|
||||
- _TransparentZWrite: 0
|
||||
- _UVBase: 0
|
||||
- _UVDetail: 0
|
||||
- _UVEmissive: 0
|
||||
- _UseEmissiveIntensity: 0
|
||||
- _UseShadowThreshold: 0
|
||||
- _ZTestDepthEqualForOpaque: 3
|
||||
- _ZTestGBuffer: 4
|
||||
- _ZTestTransparent: 4
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _BaseColor: {r: 0.2830189, g: 0.2830189, b: 0.2830189, a: 1}
|
||||
- _BaseColorMap_MipInfo: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _Color: {r: 0.28301886, g: 0.28301886, b: 0.28301886, a: 1}
|
||||
- _DiffusionProfileAsset: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _DoubleSidedConstants: {r: 1, g: 1, b: -1, a: 0}
|
||||
- _EmissionColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _EmissiveColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _EmissiveColorLDR: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _InvPrimScale: {r: 1, g: 1, b: 0, a: 0}
|
||||
- _IridescenceThicknessRemap: {r: 0, g: 1, b: 0, a: 0}
|
||||
- _SpecularColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _ThicknessRemap: {r: 0, g: 1, b: 0, a: 0}
|
||||
- _TransmittanceColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _UVDetailsMappingMask: {r: 1, g: 0, b: 0, a: 0}
|
||||
- _UVMappingMask: {r: 1, g: 0, b: 0, a: 0}
|
||||
- _UVMappingMaskEmissive: {r: 1, g: 0, b: 0, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
--- !u!114 &2980252948600534445
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 12
|
||||
hdPluginSubTargetMaterialVersions:
|
||||
m_Keys: []
|
||||
m_Values:
|
||||
@@ -1,15 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: e3910fc74a0b8e54bb65a66b08eeccb7
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 330726
|
||||
packageName: Orbital Base Environment
|
||||
packageVersion: 1.0
|
||||
assetPath: Assets/BefourStudios/Art/Materials/M_BaseGray.mat
|
||||
uploadId: 782779
|
||||
@@ -1,198 +0,0 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: M_Basement
|
||||
m_Shader: {fileID: -6465566751694194690, guid: bb2b9fd294686ac489b6c02ab0921e98,
|
||||
type: 3}
|
||||
m_ValidKeywords:
|
||||
- _ALPHATEST_ON
|
||||
- _DISABLE_SSR_TRANSPARENT
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 1
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: 2475
|
||||
stringTagMap:
|
||||
MotionVector: User
|
||||
RenderType: TransparentCutout
|
||||
disabledShaderPasses:
|
||||
- TransparentDepthPrepass
|
||||
- TransparentDepthPostpass
|
||||
- TransparentBackface
|
||||
- RayTracingPrepass
|
||||
- MOTIONVECTORS
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _AlphaClipping:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BaseTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000002050920361184488094, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MaskTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NormalTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000011194687961845945714, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ORMTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000013483678348921446324, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SecondNormalTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SecondTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _Texture2DAsset_50d8aa134ded4f3ba8216b2c6da2550a_Out_0:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000011191443335310782487, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _WorldAlignTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _A_Dirt: 0
|
||||
- _A_Edge: 0
|
||||
- _A_Mask: 0
|
||||
- _AddPrecomputedVelocity: 0
|
||||
- _AddSecondNormal: 0
|
||||
- _AlphaCutoffEnable: 1
|
||||
- _AlphaDstBlend: 0
|
||||
- _AlphaOpacity: 0.75
|
||||
- _AlphaSrcBlend: 1
|
||||
- _AlphaToMask: 0
|
||||
- _AlphaToMaskInspectorValue: 0
|
||||
- _AlphaTreshold: 0.45
|
||||
- _B_Dirt: 0
|
||||
- _B_Edge: 0
|
||||
- _B_Mask: 0
|
||||
- _BaseColorMultiply: 0.72
|
||||
- _BlendMode: 0
|
||||
- _ChangeInstantColor_1: 0
|
||||
- _ConservativeDepthOffsetEnable: 0
|
||||
- _CullMode: 2
|
||||
- _CullModeForward: 2
|
||||
- _DepthOffsetEnable: 0
|
||||
- _Dirt_Intensity: 0.5
|
||||
- _DoubleSidedEnable: 0
|
||||
- _DoubleSidedGIMode: 0
|
||||
- _DoubleSidedNormalMode: 2
|
||||
- _DstBlend: 0
|
||||
- _Edges_Intensity: 1
|
||||
- _Emissive: 0
|
||||
- _EmissiveIntensity: 1
|
||||
- _EnableBlendModePreserveSpecularLighting: 1
|
||||
- _EnableDirt: 0
|
||||
- _EnableEdge: 0
|
||||
- _EnableFogOnTransparent: 1
|
||||
- _G_Dirt: 0
|
||||
- _G_Edge: 0
|
||||
- _G_Mask: 0
|
||||
- _MaskAdjustment: 1
|
||||
- _MetallicIntensity: 0.55
|
||||
- _NormalIntensity: 0.96
|
||||
- _OpaqueCullMode: 2
|
||||
- _PomHeight: 1
|
||||
- _PomQuality: 32
|
||||
- _R_Dirt: 0
|
||||
- _R_Edge: 0
|
||||
- _R_Mask: 0
|
||||
- _RayTracing: 0
|
||||
- _ReceivesSSR: 1
|
||||
- _ReceivesSSRTransparent: 0
|
||||
- _RefractionModel: 0
|
||||
- _RenderQueueType: 1
|
||||
- _RequireSplitLighting: 0
|
||||
- _Saturation: 1
|
||||
- _SaturationWorldAlign: 1
|
||||
- _SecondNormalBlend: 1
|
||||
- _SecondNormalTile: 4.68
|
||||
- _SecondTextureColorMultiply: 1
|
||||
- _SmoothnessIntensity: 0.87
|
||||
- _SrcBlend: 1
|
||||
- _StencilRef: 0
|
||||
- _StencilRefDepth: 8
|
||||
- _StencilRefDistortionVec: 4
|
||||
- _StencilRefGBuffer: 10
|
||||
- _StencilRefMV: 40
|
||||
- _StencilWriteMask: 6
|
||||
- _StencilWriteMaskDepth: 8
|
||||
- _StencilWriteMaskDistortionVec: 4
|
||||
- _StencilWriteMaskGBuffer: 14
|
||||
- _StencilWriteMaskMV: 40
|
||||
- _SupportDecals: 1
|
||||
- _SurfaceType: 0
|
||||
- _TransparentBackfaceEnable: 0
|
||||
- _TransparentCullMode: 2
|
||||
- _TransparentDepthPostpassEnable: 0
|
||||
- _TransparentDepthPrepassEnable: 0
|
||||
- _TransparentSortPriority: 0
|
||||
- _TransparentWritingMotionVec: 0
|
||||
- _TransparentZWrite: 0
|
||||
- _UV_Tiling: 1
|
||||
- _UseAlphaClipping: 0
|
||||
- _UseInstantColor: 0
|
||||
- _UsePom: 0
|
||||
- _UseShadowThreshold: 0
|
||||
- _UseWorldAlign: 0
|
||||
- _WorldAlignTile: 512
|
||||
- _ZTestDepthEqualForOpaque: 3
|
||||
- _ZTestGBuffer: 3
|
||||
- _ZTestTransparent: 4
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _AlbedoTint: {r: 0.90800005, g: 0.90800005, b: 0.90800005, a: 0}
|
||||
- _ChangeInstantColor: {r: 0.624, g: 0.624, b: 0.624, a: 0}
|
||||
- _Dirt_Color: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _DoubleSidedConstants: {r: 1, g: 1, b: -1, a: 0}
|
||||
- _EdgeColor: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _EmissionColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _EmissiveColor: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _PomOffset: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _SecondColorMultiply: {r: 1, g: 1, b: 1, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
--- !u!114 &3696197708043593277
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 12
|
||||
hdPluginSubTargetMaterialVersions:
|
||||
m_Keys: []
|
||||
m_Values:
|
||||
@@ -1,15 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: b7ca746a664713c4a9e414512de4e1dc
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 330726
|
||||
packageName: Orbital Base Environment
|
||||
packageVersion: 1.0
|
||||
assetPath: Assets/BefourStudios/Art/Materials/M_Basement.mat
|
||||
uploadId: 782779
|
||||
@@ -1,193 +0,0 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: M_BasementCornerPieces
|
||||
m_Shader: {fileID: -6465566751694194690, guid: bb2b9fd294686ac489b6c02ab0921e98,
|
||||
type: 3}
|
||||
m_ValidKeywords:
|
||||
- _ALPHATEST_ON
|
||||
- _DISABLE_SSR_TRANSPARENT
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 1
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: 2475
|
||||
stringTagMap:
|
||||
MotionVector: User
|
||||
RenderType: TransparentCutout
|
||||
disabledShaderPasses:
|
||||
- TransparentDepthPrepass
|
||||
- TransparentDepthPostpass
|
||||
- TransparentBackface
|
||||
- RayTracingPrepass
|
||||
- MOTIONVECTORS
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _AlphaClipping:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BaseTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000015214240043293794981, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MaskTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NormalTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000006070472442632337361, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ORMTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000009663782572794214095, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SecondTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _Texture2DAsset_50d8aa134ded4f3ba8216b2c6da2550a_Out_0:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000011191443335310782487, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _WorldAlignTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _A_Dirt: 0
|
||||
- _A_Edge: 0
|
||||
- _A_Mask: 0
|
||||
- _AddPrecomputedVelocity: 0
|
||||
- _AddSecondNormal: 0
|
||||
- _AlphaCutoffEnable: 1
|
||||
- _AlphaDstBlend: 0
|
||||
- _AlphaOpacity: 0.75
|
||||
- _AlphaSrcBlend: 1
|
||||
- _AlphaToMask: 0
|
||||
- _AlphaToMaskInspectorValue: 0
|
||||
- _AlphaTreshold: 0.45
|
||||
- _B_Dirt: 0
|
||||
- _B_Edge: 0
|
||||
- _B_Mask: 0
|
||||
- _BaseColorMultiply: 1
|
||||
- _BlendMode: 0
|
||||
- _ChangeInstantColor_1: 0
|
||||
- _ConservativeDepthOffsetEnable: 0
|
||||
- _CullMode: 2
|
||||
- _CullModeForward: 2
|
||||
- _DepthOffsetEnable: 0
|
||||
- _Dirt_Intensity: 0.5
|
||||
- _DoubleSidedEnable: 0
|
||||
- _DoubleSidedGIMode: 0
|
||||
- _DoubleSidedNormalMode: 2
|
||||
- _DstBlend: 0
|
||||
- _Edges_Intensity: 1
|
||||
- _Emissive: 0
|
||||
- _EmissiveIntensity: 1
|
||||
- _EnableBlendModePreserveSpecularLighting: 1
|
||||
- _EnableDirt: 0
|
||||
- _EnableEdge: 0
|
||||
- _EnableFogOnTransparent: 1
|
||||
- _G_Dirt: 0
|
||||
- _G_Edge: 0
|
||||
- _G_Mask: 0
|
||||
- _MaskAdjustment: 1
|
||||
- _MetallicIntensity: 0.75
|
||||
- _NormalIntensity: 1
|
||||
- _OpaqueCullMode: 2
|
||||
- _PomHeight: 1
|
||||
- _PomQuality: 32
|
||||
- _R_Dirt: 0
|
||||
- _R_Edge: 0
|
||||
- _R_Mask: 0
|
||||
- _RayTracing: 0
|
||||
- _ReceivesSSR: 1
|
||||
- _ReceivesSSRTransparent: 0
|
||||
- _RefractionModel: 0
|
||||
- _RenderQueueType: 1
|
||||
- _RequireSplitLighting: 0
|
||||
- _Saturation: 1
|
||||
- _SaturationWorldAlign: 1
|
||||
- _SecondNormalTile: 4.68
|
||||
- _SecondTextureColorMultiply: 1
|
||||
- _SmoothnessIntensity: 1.05
|
||||
- _SrcBlend: 1
|
||||
- _StencilRef: 0
|
||||
- _StencilRefDepth: 8
|
||||
- _StencilRefDistortionVec: 4
|
||||
- _StencilRefGBuffer: 10
|
||||
- _StencilRefMV: 40
|
||||
- _StencilWriteMask: 6
|
||||
- _StencilWriteMaskDepth: 8
|
||||
- _StencilWriteMaskDistortionVec: 4
|
||||
- _StencilWriteMaskGBuffer: 14
|
||||
- _StencilWriteMaskMV: 40
|
||||
- _SupportDecals: 1
|
||||
- _SurfaceType: 0
|
||||
- _TransparentBackfaceEnable: 0
|
||||
- _TransparentCullMode: 2
|
||||
- _TransparentDepthPostpassEnable: 0
|
||||
- _TransparentDepthPrepassEnable: 0
|
||||
- _TransparentSortPriority: 0
|
||||
- _TransparentWritingMotionVec: 0
|
||||
- _TransparentZWrite: 0
|
||||
- _UV_Tiling: 1
|
||||
- _UseAlphaClipping: 0
|
||||
- _UseInstantColor: 0
|
||||
- _UsePom: 0
|
||||
- _UseShadowThreshold: 0
|
||||
- _UseWorldAlign: 0
|
||||
- _WorldAlignTile: 512
|
||||
- _ZTestDepthEqualForOpaque: 3
|
||||
- _ZTestGBuffer: 3
|
||||
- _ZTestTransparent: 4
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _AlbedoTint: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _ChangeInstantColor: {r: 0.6320754, g: 0.6320754, b: 0.6320754, a: 0}
|
||||
- _Dirt_Color: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _DoubleSidedConstants: {r: 1, g: 1, b: -1, a: 0}
|
||||
- _EdgeColor: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _EmissionColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _EmissiveColor: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _PomOffset: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _SecondColorMultiply: {r: 1, g: 1, b: 1, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
--- !u!114 &3696197708043593277
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 12
|
||||
hdPluginSubTargetMaterialVersions:
|
||||
m_Keys: []
|
||||
m_Values:
|
||||
@@ -1,15 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: cd255ec11f5da4c4ea8a35b9422cd4bc
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 330726
|
||||
packageName: Orbital Base Environment
|
||||
packageVersion: 1.0
|
||||
assetPath: Assets/BefourStudios/Art/Materials/M_BasementCornerPieces.mat
|
||||
uploadId: 782779
|
||||
@@ -1,193 +0,0 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: M_BathroomCeramic
|
||||
m_Shader: {fileID: -6465566751694194690, guid: bb2b9fd294686ac489b6c02ab0921e98,
|
||||
type: 3}
|
||||
m_ValidKeywords:
|
||||
- _ALPHATEST_ON
|
||||
- _DISABLE_SSR_TRANSPARENT
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 1
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: 2475
|
||||
stringTagMap:
|
||||
MotionVector: User
|
||||
RenderType: TransparentCutout
|
||||
disabledShaderPasses:
|
||||
- TransparentDepthPrepass
|
||||
- TransparentDepthPostpass
|
||||
- TransparentBackface
|
||||
- RayTracingPrepass
|
||||
- MOTIONVECTORS
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _AlphaClipping:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BaseTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000012290011378338192519, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MaskTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NormalTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000017795868776178766243, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ORMTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000008655299813024695645, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SecondTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _Texture2DAsset_50d8aa134ded4f3ba8216b2c6da2550a_Out_0:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000011191443335310782487, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _WorldAlignTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _A_Dirt: 0
|
||||
- _A_Edge: 0
|
||||
- _A_Mask: 0
|
||||
- _AddPrecomputedVelocity: 0
|
||||
- _AddSecondNormal: 0
|
||||
- _AlphaCutoffEnable: 1
|
||||
- _AlphaDstBlend: 0
|
||||
- _AlphaOpacity: 0.75
|
||||
- _AlphaSrcBlend: 1
|
||||
- _AlphaToMask: 0
|
||||
- _AlphaToMaskInspectorValue: 0
|
||||
- _AlphaTreshold: 0.45
|
||||
- _B_Dirt: 0
|
||||
- _B_Edge: 0
|
||||
- _B_Mask: 0
|
||||
- _BaseColorMultiply: 1
|
||||
- _BlendMode: 0
|
||||
- _ChangeInstantColor_1: 0
|
||||
- _ConservativeDepthOffsetEnable: 0
|
||||
- _CullMode: 2
|
||||
- _CullModeForward: 2
|
||||
- _DepthOffsetEnable: 0
|
||||
- _Dirt_Intensity: 0.5
|
||||
- _DoubleSidedEnable: 0
|
||||
- _DoubleSidedGIMode: 0
|
||||
- _DoubleSidedNormalMode: 2
|
||||
- _DstBlend: 0
|
||||
- _Edges_Intensity: 1
|
||||
- _Emissive: 0
|
||||
- _EmissiveIntensity: 1
|
||||
- _EnableBlendModePreserveSpecularLighting: 1
|
||||
- _EnableDirt: 0
|
||||
- _EnableEdge: 0
|
||||
- _EnableFogOnTransparent: 1
|
||||
- _G_Dirt: 0
|
||||
- _G_Edge: 0
|
||||
- _G_Mask: 0
|
||||
- _MaskAdjustment: 1
|
||||
- _MetallicIntensity: 0.75
|
||||
- _NormalIntensity: 1
|
||||
- _OpaqueCullMode: 2
|
||||
- _PomHeight: 1
|
||||
- _PomQuality: 32
|
||||
- _R_Dirt: 0
|
||||
- _R_Edge: 0
|
||||
- _R_Mask: 0
|
||||
- _RayTracing: 0
|
||||
- _ReceivesSSR: 1
|
||||
- _ReceivesSSRTransparent: 0
|
||||
- _RefractionModel: 0
|
||||
- _RenderQueueType: 1
|
||||
- _RequireSplitLighting: 0
|
||||
- _Saturation: 1
|
||||
- _SaturationWorldAlign: 1
|
||||
- _SecondNormalTile: 4.68
|
||||
- _SecondTextureColorMultiply: 1
|
||||
- _SmoothnessIntensity: 1.05
|
||||
- _SrcBlend: 1
|
||||
- _StencilRef: 0
|
||||
- _StencilRefDepth: 8
|
||||
- _StencilRefDistortionVec: 4
|
||||
- _StencilRefGBuffer: 10
|
||||
- _StencilRefMV: 40
|
||||
- _StencilWriteMask: 6
|
||||
- _StencilWriteMaskDepth: 8
|
||||
- _StencilWriteMaskDistortionVec: 4
|
||||
- _StencilWriteMaskGBuffer: 14
|
||||
- _StencilWriteMaskMV: 40
|
||||
- _SupportDecals: 1
|
||||
- _SurfaceType: 0
|
||||
- _TransparentBackfaceEnable: 0
|
||||
- _TransparentCullMode: 2
|
||||
- _TransparentDepthPostpassEnable: 0
|
||||
- _TransparentDepthPrepassEnable: 0
|
||||
- _TransparentSortPriority: 0
|
||||
- _TransparentWritingMotionVec: 0
|
||||
- _TransparentZWrite: 0
|
||||
- _UV_Tiling: 4
|
||||
- _UseAlphaClipping: 0
|
||||
- _UseInstantColor: 0
|
||||
- _UsePom: 0
|
||||
- _UseShadowThreshold: 0
|
||||
- _UseWorldAlign: 0
|
||||
- _WorldAlignTile: 512
|
||||
- _ZTestDepthEqualForOpaque: 3
|
||||
- _ZTestGBuffer: 3
|
||||
- _ZTestTransparent: 4
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _AlbedoTint: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _ChangeInstantColor: {r: 0.6320754, g: 0.6320754, b: 0.6320754, a: 0}
|
||||
- _Dirt_Color: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _DoubleSidedConstants: {r: 1, g: 1, b: -1, a: 0}
|
||||
- _EdgeColor: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _EmissionColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _EmissiveColor: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _PomOffset: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _SecondColorMultiply: {r: 1, g: 1, b: 1, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
--- !u!114 &3696197708043593277
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 12
|
||||
hdPluginSubTargetMaterialVersions:
|
||||
m_Keys: []
|
||||
m_Values:
|
||||
@@ -1,15 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: e72814bca2fca19478527665211bd4a9
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 330726
|
||||
packageName: Orbital Base Environment
|
||||
packageVersion: 1.0
|
||||
assetPath: Assets/BefourStudios/Art/Materials/M_BathroomCeramic.mat
|
||||
uploadId: 782779
|
||||
@@ -1,270 +0,0 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: M_BathroomGlass
|
||||
m_Shader: {fileID: 4800000, guid: 6e4ae4064600d784cac1e41a9e6f2e59, type: 3}
|
||||
m_ValidKeywords:
|
||||
- _DISABLE_SSR_TRANSPARENT
|
||||
- _ENABLE_FOG_ON_TRANSPARENT
|
||||
- _NORMALMAP
|
||||
- _NORMALMAP_TANGENT_SPACE
|
||||
- _SURFACE_TYPE_TRANSPARENT
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: 3000
|
||||
stringTagMap:
|
||||
RenderType: Transparent
|
||||
disabledShaderPasses:
|
||||
- TransparentDepthPrepass
|
||||
- TransparentDepthPostpass
|
||||
- TransparentBackface
|
||||
- RayTracingPrepass
|
||||
- MOTIONVECTORS
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _AnisotropyMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BaseColorMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BentNormalMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BentNormalMapOS:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _CoatMaskMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _EmissiveColorMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _HeightMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _IridescenceMaskMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _IridescenceThicknessMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MainTex:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MaskMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NormalMap:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000000211747456392771713, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NormalMapOS:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SpecularColorMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SubsurfaceMaskMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _TangentMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _TangentMapOS:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ThicknessMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _TransmittanceColorMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _AORemapMax: 1
|
||||
- _AORemapMin: 0
|
||||
- _ATDistance: 1
|
||||
- _AddPrecomputedVelocity: 0
|
||||
- _AlbedoAffectEmissive: 0
|
||||
- _AlphaCutoff: 0.5
|
||||
- _AlphaCutoffEnable: 0
|
||||
- _AlphaCutoffPostpass: 0.5
|
||||
- _AlphaCutoffPrepass: 0.5
|
||||
- _AlphaCutoffShadow: 0.5
|
||||
- _AlphaDstBlend: 10
|
||||
- _AlphaSrcBlend: 1
|
||||
- _AlphaToMask: 0
|
||||
- _AlphaToMaskInspectorValue: 0
|
||||
- _Anisotropy: 0
|
||||
- _BlendMode: 0
|
||||
- _CoatMask: 0
|
||||
- _CullMode: 2
|
||||
- _CullModeForward: 2
|
||||
- _Cutoff: 0.5
|
||||
- _DepthOffsetEnable: 0
|
||||
- _DetailAlbedoScale: 1
|
||||
- _DetailNormalScale: 1
|
||||
- _DetailSmoothnessScale: 1
|
||||
- _DiffusionProfile: 0
|
||||
- _DiffusionProfileHash: 0
|
||||
- _DisplacementLockObjectScale: 1
|
||||
- _DisplacementLockTilingScale: 1
|
||||
- _DisplacementMode: 0
|
||||
- _DoubleSidedEnable: 0
|
||||
- _DoubleSidedGIMode: 0
|
||||
- _DoubleSidedNormalMode: 1
|
||||
- _DstBlend: 10
|
||||
- _EmissiveColorMode: 1
|
||||
- _EmissiveExposureWeight: 1
|
||||
- _EmissiveIntensity: 1
|
||||
- _EmissiveIntensityUnit: 0
|
||||
- _EnableBlendModePreserveSpecularLighting: 1
|
||||
- _EnableFogOnTransparent: 1
|
||||
- _EnableGeometricSpecularAA: 0
|
||||
- _EnergyConservingSpecularColor: 1
|
||||
- _HeightAmplitude: 0.02
|
||||
- _HeightCenter: 0.5
|
||||
- _HeightMapParametrization: 0
|
||||
- _HeightMax: 1
|
||||
- _HeightMin: -1
|
||||
- _HeightOffset: 0
|
||||
- _HeightPoMAmplitude: 2
|
||||
- _HeightTessAmplitude: 2
|
||||
- _HeightTessCenter: 0.5
|
||||
- _InvTilingScale: 1
|
||||
- _Ior: 1.5
|
||||
- _IridescenceMask: 1
|
||||
- _IridescenceThickness: 1
|
||||
- _LinkDetailsWithBase: 1
|
||||
- _MaterialID: 1
|
||||
- _Metallic: 0.302
|
||||
- _MetallicRemapMax: 1
|
||||
- _MetallicRemapMin: 0
|
||||
- _NormalMapSpace: 0
|
||||
- _NormalScale: 1.46
|
||||
- _OpaqueCullMode: 2
|
||||
- _PPDLodThreshold: 5
|
||||
- _PPDMaxSamples: 15
|
||||
- _PPDMinSamples: 5
|
||||
- _PPDPrimitiveLength: 1
|
||||
- _PPDPrimitiveWidth: 1
|
||||
- _RayTracing: 0
|
||||
- _ReceivesSSR: 1
|
||||
- _ReceivesSSRTransparent: 0
|
||||
- _RefractionModel: 0
|
||||
- _Smoothness: 0.847
|
||||
- _SmoothnessRemapMax: 1
|
||||
- _SmoothnessRemapMin: 0
|
||||
- _SpecularAAScreenSpaceVariance: 0.1
|
||||
- _SpecularAAThreshold: 0.2
|
||||
- _SpecularOcclusionMode: 1
|
||||
- _SrcBlend: 1
|
||||
- _StencilRef: 0
|
||||
- _StencilRefDepth: 0
|
||||
- _StencilRefGBuffer: 2
|
||||
- _StencilRefMV: 32
|
||||
- _StencilWriteMask: 6
|
||||
- _StencilWriteMaskDepth: 8
|
||||
- _StencilWriteMaskGBuffer: 14
|
||||
- _StencilWriteMaskMV: 40
|
||||
- _SubsurfaceMask: 1
|
||||
- _SupportDecals: 1
|
||||
- _SurfaceType: 1
|
||||
- _TexWorldScale: 1
|
||||
- _TexWorldScaleEmissive: 1
|
||||
- _Thickness: 1
|
||||
- _TransmissionEnable: 1
|
||||
- _TransparentBackfaceEnable: 0
|
||||
- _TransparentCullMode: 2
|
||||
- _TransparentDepthPostpassEnable: 0
|
||||
- _TransparentDepthPrepassEnable: 0
|
||||
- _TransparentSortPriority: 0
|
||||
- _TransparentWritingMotionVec: 0
|
||||
- _TransparentZWrite: 0
|
||||
- _UVBase: 0
|
||||
- _UVDetail: 0
|
||||
- _UVEmissive: 0
|
||||
- _UseEmissiveIntensity: 0
|
||||
- _UseShadowThreshold: 0
|
||||
- _ZTestDepthEqualForOpaque: 4
|
||||
- _ZTestGBuffer: 4
|
||||
- _ZTestTransparent: 4
|
||||
- _ZWrite: 0
|
||||
m_Colors:
|
||||
- _BaseColor: {r: 0.598033, g: 0.7297751, b: 0.8396226, a: 0.5529412}
|
||||
- _BaseColorMap_MipInfo: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _Color: {r: 0.598033, g: 0.7297751, b: 0.8396226, a: 0.5529412}
|
||||
- _DiffusionProfileAsset: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _DoubleSidedConstants: {r: 1, g: 1, b: -1, a: 0}
|
||||
- _EmissionColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _EmissiveColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _EmissiveColorLDR: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _InvPrimScale: {r: 1, g: 1, b: 0, a: 0}
|
||||
- _IridescenceThicknessRemap: {r: 0, g: 1, b: 0, a: 0}
|
||||
- _SpecularColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _ThicknessRemap: {r: 0, g: 1, b: 0, a: 0}
|
||||
- _TransmittanceColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _UVDetailsMappingMask: {r: 1, g: 0, b: 0, a: 0}
|
||||
- _UVMappingMask: {r: 1, g: 0, b: 0, a: 0}
|
||||
- _UVMappingMaskEmissive: {r: 1, g: 0, b: 0, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
--- !u!114 &1272734667632820268
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 12
|
||||
hdPluginSubTargetMaterialVersions:
|
||||
m_Keys: []
|
||||
m_Values:
|
||||
@@ -1,15 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 37ca5375d407f2e45aca6f68ab1e9125
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 330726
|
||||
packageName: Orbital Base Environment
|
||||
packageVersion: 1.0
|
||||
assetPath: Assets/BefourStudios/Art/Materials/M_BathroomGlass.mat
|
||||
uploadId: 782779
|
||||
@@ -1,193 +0,0 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: M_BathroomMetal
|
||||
m_Shader: {fileID: -6465566751694194690, guid: bb2b9fd294686ac489b6c02ab0921e98,
|
||||
type: 3}
|
||||
m_ValidKeywords:
|
||||
- _ALPHATEST_ON
|
||||
- _DISABLE_SSR_TRANSPARENT
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 1
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: 2475
|
||||
stringTagMap:
|
||||
MotionVector: User
|
||||
RenderType: TransparentCutout
|
||||
disabledShaderPasses:
|
||||
- TransparentDepthPrepass
|
||||
- TransparentDepthPostpass
|
||||
- TransparentBackface
|
||||
- RayTracingPrepass
|
||||
- MOTIONVECTORS
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _AlphaClipping:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BaseTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000012290011378338192519, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MaskTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NormalTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000017795868776178766243, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ORMTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000008655299813024695645, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SecondTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _Texture2DAsset_50d8aa134ded4f3ba8216b2c6da2550a_Out_0:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000011191443335310782487, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _WorldAlignTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _A_Dirt: 0
|
||||
- _A_Edge: 0
|
||||
- _A_Mask: 0
|
||||
- _AddPrecomputedVelocity: 0
|
||||
- _AddSecondNormal: 0
|
||||
- _AlphaCutoffEnable: 1
|
||||
- _AlphaDstBlend: 0
|
||||
- _AlphaOpacity: 0.75
|
||||
- _AlphaSrcBlend: 1
|
||||
- _AlphaToMask: 0
|
||||
- _AlphaToMaskInspectorValue: 0
|
||||
- _AlphaTreshold: 0.45
|
||||
- _B_Dirt: 0
|
||||
- _B_Edge: 0
|
||||
- _B_Mask: 0
|
||||
- _BaseColorMultiply: 1
|
||||
- _BlendMode: 0
|
||||
- _ChangeInstantColor_1: 0
|
||||
- _ConservativeDepthOffsetEnable: 0
|
||||
- _CullMode: 2
|
||||
- _CullModeForward: 2
|
||||
- _DepthOffsetEnable: 0
|
||||
- _Dirt_Intensity: 0.5
|
||||
- _DoubleSidedEnable: 0
|
||||
- _DoubleSidedGIMode: 0
|
||||
- _DoubleSidedNormalMode: 2
|
||||
- _DstBlend: 0
|
||||
- _Edges_Intensity: 1
|
||||
- _Emissive: 0
|
||||
- _EmissiveIntensity: 1
|
||||
- _EnableBlendModePreserveSpecularLighting: 1
|
||||
- _EnableDirt: 0
|
||||
- _EnableEdge: 0
|
||||
- _EnableFogOnTransparent: 1
|
||||
- _G_Dirt: 0
|
||||
- _G_Edge: 0
|
||||
- _G_Mask: 0
|
||||
- _MaskAdjustment: 1
|
||||
- _MetallicIntensity: -0.04
|
||||
- _NormalIntensity: 1
|
||||
- _OpaqueCullMode: 2
|
||||
- _PomHeight: 1
|
||||
- _PomQuality: 32
|
||||
- _R_Dirt: 0
|
||||
- _R_Edge: 0
|
||||
- _R_Mask: 0
|
||||
- _RayTracing: 0
|
||||
- _ReceivesSSR: 1
|
||||
- _ReceivesSSRTransparent: 0
|
||||
- _RefractionModel: 0
|
||||
- _RenderQueueType: 1
|
||||
- _RequireSplitLighting: 0
|
||||
- _Saturation: 1
|
||||
- _SaturationWorldAlign: 1
|
||||
- _SecondNormalTile: 4.68
|
||||
- _SecondTextureColorMultiply: 1
|
||||
- _SmoothnessIntensity: 1.05
|
||||
- _SrcBlend: 1
|
||||
- _StencilRef: 0
|
||||
- _StencilRefDepth: 8
|
||||
- _StencilRefDistortionVec: 4
|
||||
- _StencilRefGBuffer: 10
|
||||
- _StencilRefMV: 40
|
||||
- _StencilWriteMask: 6
|
||||
- _StencilWriteMaskDepth: 8
|
||||
- _StencilWriteMaskDistortionVec: 4
|
||||
- _StencilWriteMaskGBuffer: 14
|
||||
- _StencilWriteMaskMV: 40
|
||||
- _SupportDecals: 1
|
||||
- _SurfaceType: 0
|
||||
- _TransparentBackfaceEnable: 0
|
||||
- _TransparentCullMode: 2
|
||||
- _TransparentDepthPostpassEnable: 0
|
||||
- _TransparentDepthPrepassEnable: 0
|
||||
- _TransparentSortPriority: 0
|
||||
- _TransparentWritingMotionVec: 0
|
||||
- _TransparentZWrite: 0
|
||||
- _UV_Tiling: 7
|
||||
- _UseAlphaClipping: 0
|
||||
- _UseInstantColor: 0
|
||||
- _UsePom: 0
|
||||
- _UseShadowThreshold: 0
|
||||
- _UseWorldAlign: 0
|
||||
- _WorldAlignTile: 512
|
||||
- _ZTestDepthEqualForOpaque: 3
|
||||
- _ZTestGBuffer: 3
|
||||
- _ZTestTransparent: 4
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _AlbedoTint: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _ChangeInstantColor: {r: 0.6320754, g: 0.6320754, b: 0.6320754, a: 0}
|
||||
- _Dirt_Color: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _DoubleSidedConstants: {r: 1, g: 1, b: -1, a: 0}
|
||||
- _EdgeColor: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _EmissionColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _EmissiveColor: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _PomOffset: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _SecondColorMultiply: {r: 1, g: 1, b: 1, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
--- !u!114 &3696197708043593277
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 12
|
||||
hdPluginSubTargetMaterialVersions:
|
||||
m_Keys: []
|
||||
m_Values:
|
||||
@@ -1,15 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: c911ddce2a9037143a615d0ee8fe6436
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 330726
|
||||
packageName: Orbital Base Environment
|
||||
packageVersion: 1.0
|
||||
assetPath: Assets/BefourStudios/Art/Materials/M_BathroomMetal.mat
|
||||
uploadId: 782779
|
||||
@@ -1,186 +0,0 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: M_BathroomMetalBrighter
|
||||
m_Shader: {fileID: -6465566751694194690, guid: bb2b9fd294686ac489b6c02ab0921e98,
|
||||
type: 3}
|
||||
m_ValidKeywords:
|
||||
- _ALPHATEST_ON
|
||||
- _DISABLE_SSR_TRANSPARENT
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 1
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: 2475
|
||||
stringTagMap:
|
||||
MotionVector: User
|
||||
RenderType: TransparentCutout
|
||||
disabledShaderPasses:
|
||||
- TransparentDepthPrepass
|
||||
- TransparentDepthPostpass
|
||||
- TransparentBackface
|
||||
- RayTracingPrepass
|
||||
- MOTIONVECTORS
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _AlphaClipping:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BaseTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000012290011378338192519, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MaskTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NormalTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000017795868776178766243, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ORMTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000008655299813024695645, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SecondTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _WorldAlignTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _A_Dirt: 0
|
||||
- _A_Edge: 0
|
||||
- _A_Mask: 0
|
||||
- _AddPrecomputedVelocity: 0
|
||||
- _AlphaCutoffEnable: 1
|
||||
- _AlphaDstBlend: 0
|
||||
- _AlphaOpacity: 0.75
|
||||
- _AlphaSrcBlend: 1
|
||||
- _AlphaToMask: 0
|
||||
- _AlphaToMaskInspectorValue: 0
|
||||
- _AlphaTreshold: 0.45
|
||||
- _B_Dirt: 0
|
||||
- _B_Edge: 0
|
||||
- _B_Mask: 0
|
||||
- _BaseColorMultiply: 1
|
||||
- _BlendMode: 0
|
||||
- _ChangeInstantColor_1: 0
|
||||
- _ConservativeDepthOffsetEnable: 0
|
||||
- _CullMode: 2
|
||||
- _CullModeForward: 2
|
||||
- _DepthOffsetEnable: 0
|
||||
- _Dirt_Intensity: 0.5
|
||||
- _DoubleSidedEnable: 0
|
||||
- _DoubleSidedGIMode: 0
|
||||
- _DoubleSidedNormalMode: 2
|
||||
- _DstBlend: 0
|
||||
- _Edges_Intensity: 1
|
||||
- _Emissive: 0
|
||||
- _EmissiveIntensity: 1
|
||||
- _EnableBlendModePreserveSpecularLighting: 1
|
||||
- _EnableDirt: 0
|
||||
- _EnableEdge: 0
|
||||
- _EnableFogOnTransparent: 1
|
||||
- _G_Dirt: 0
|
||||
- _G_Edge: 0
|
||||
- _G_Mask: 0
|
||||
- _MaskAdjustment: 1
|
||||
- _MetallicIntensity: 0.75
|
||||
- _NormalIntensity: 1
|
||||
- _OpaqueCullMode: 2
|
||||
- _PomHeight: 1
|
||||
- _PomQuality: 32
|
||||
- _R_Dirt: 0
|
||||
- _R_Edge: 0
|
||||
- _R_Mask: 0
|
||||
- _RayTracing: 0
|
||||
- _ReceivesSSR: 1
|
||||
- _ReceivesSSRTransparent: 0
|
||||
- _RefractionModel: 0
|
||||
- _RenderQueueType: 1
|
||||
- _RequireSplitLighting: 0
|
||||
- _Saturation: 1
|
||||
- _SaturationWorldAlign: 1
|
||||
- _SecondTextureColorMultiply: 1
|
||||
- _SmoothnessIntensity: 1.05
|
||||
- _SrcBlend: 1
|
||||
- _StencilRef: 0
|
||||
- _StencilRefDepth: 8
|
||||
- _StencilRefDistortionVec: 4
|
||||
- _StencilRefGBuffer: 10
|
||||
- _StencilRefMV: 40
|
||||
- _StencilWriteMask: 6
|
||||
- _StencilWriteMaskDepth: 8
|
||||
- _StencilWriteMaskDistortionVec: 4
|
||||
- _StencilWriteMaskGBuffer: 14
|
||||
- _StencilWriteMaskMV: 40
|
||||
- _SupportDecals: 1
|
||||
- _SurfaceType: 0
|
||||
- _TransparentBackfaceEnable: 0
|
||||
- _TransparentCullMode: 2
|
||||
- _TransparentDepthPostpassEnable: 0
|
||||
- _TransparentDepthPrepassEnable: 0
|
||||
- _TransparentSortPriority: 0
|
||||
- _TransparentWritingMotionVec: 0
|
||||
- _TransparentZWrite: 0
|
||||
- _UV_Tiling: 3
|
||||
- _UseAlphaClipping: 0
|
||||
- _UseInstantColor: 0
|
||||
- _UsePom: 0
|
||||
- _UseShadowThreshold: 0
|
||||
- _UseWorldAlign: 0
|
||||
- _WorldAlignTile: 512
|
||||
- _ZTestDepthEqualForOpaque: 3
|
||||
- _ZTestGBuffer: 3
|
||||
- _ZTestTransparent: 4
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _AlbedoTint: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _ChangeInstantColor: {r: 0.6320754, g: 0.6320754, b: 0.6320754, a: 0}
|
||||
- _Dirt_Color: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _DoubleSidedConstants: {r: 1, g: 1, b: -1, a: 0}
|
||||
- _EdgeColor: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _EmissionColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _EmissiveColor: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _SecondColorMultiply: {r: 1, g: 1, b: 1, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
--- !u!114 &3696197708043593277
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 12
|
||||
hdPluginSubTargetMaterialVersions:
|
||||
m_Keys: []
|
||||
m_Values:
|
||||
@@ -1,15 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 39824b333bdc8554ea41a8cecf740ee4
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 330726
|
||||
packageName: Orbital Base Environment
|
||||
packageVersion: 1.0
|
||||
assetPath: Assets/BefourStudios/Art/Materials/M_BathroomMetalBrighter.mat
|
||||
uploadId: 782779
|
||||
@@ -1,193 +0,0 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: M_BathroomMetalDarker
|
||||
m_Shader: {fileID: -6465566751694194690, guid: bb2b9fd294686ac489b6c02ab0921e98,
|
||||
type: 3}
|
||||
m_ValidKeywords:
|
||||
- _ALPHATEST_ON
|
||||
- _DISABLE_SSR_TRANSPARENT
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 1
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: 2475
|
||||
stringTagMap:
|
||||
MotionVector: User
|
||||
RenderType: TransparentCutout
|
||||
disabledShaderPasses:
|
||||
- TransparentDepthPrepass
|
||||
- TransparentDepthPostpass
|
||||
- TransparentBackface
|
||||
- RayTracingPrepass
|
||||
- MOTIONVECTORS
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _AlphaClipping:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BaseTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000012290011378338192519, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MaskTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NormalTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000017795868776178766243, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ORMTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000008655299813024695645, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SecondTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _Texture2DAsset_50d8aa134ded4f3ba8216b2c6da2550a_Out_0:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000011191443335310782487, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _WorldAlignTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _A_Dirt: 0
|
||||
- _A_Edge: 0
|
||||
- _A_Mask: 0
|
||||
- _AddPrecomputedVelocity: 0
|
||||
- _AddSecondNormal: 0
|
||||
- _AlphaCutoffEnable: 1
|
||||
- _AlphaDstBlend: 0
|
||||
- _AlphaOpacity: 0.75
|
||||
- _AlphaSrcBlend: 1
|
||||
- _AlphaToMask: 0
|
||||
- _AlphaToMaskInspectorValue: 0
|
||||
- _AlphaTreshold: 0.45
|
||||
- _B_Dirt: 0
|
||||
- _B_Edge: 0
|
||||
- _B_Mask: 0
|
||||
- _BaseColorMultiply: 1
|
||||
- _BlendMode: 0
|
||||
- _ChangeInstantColor_1: 0
|
||||
- _ConservativeDepthOffsetEnable: 0
|
||||
- _CullMode: 2
|
||||
- _CullModeForward: 2
|
||||
- _DepthOffsetEnable: 0
|
||||
- _Dirt_Intensity: 0.5
|
||||
- _DoubleSidedEnable: 0
|
||||
- _DoubleSidedGIMode: 0
|
||||
- _DoubleSidedNormalMode: 2
|
||||
- _DstBlend: 0
|
||||
- _Edges_Intensity: 1
|
||||
- _Emissive: 0
|
||||
- _EmissiveIntensity: 1
|
||||
- _EnableBlendModePreserveSpecularLighting: 1
|
||||
- _EnableDirt: 0
|
||||
- _EnableEdge: 0
|
||||
- _EnableFogOnTransparent: 1
|
||||
- _G_Dirt: 0
|
||||
- _G_Edge: 0
|
||||
- _G_Mask: 0
|
||||
- _MaskAdjustment: 1
|
||||
- _MetallicIntensity: -0.33
|
||||
- _NormalIntensity: 1
|
||||
- _OpaqueCullMode: 2
|
||||
- _PomHeight: 1
|
||||
- _PomQuality: 32
|
||||
- _R_Dirt: 0
|
||||
- _R_Edge: 0
|
||||
- _R_Mask: 0
|
||||
- _RayTracing: 0
|
||||
- _ReceivesSSR: 1
|
||||
- _ReceivesSSRTransparent: 0
|
||||
- _RefractionModel: 0
|
||||
- _RenderQueueType: 1
|
||||
- _RequireSplitLighting: 0
|
||||
- _Saturation: 1
|
||||
- _SaturationWorldAlign: 1
|
||||
- _SecondNormalTile: 4.68
|
||||
- _SecondTextureColorMultiply: 1
|
||||
- _SmoothnessIntensity: 0.63
|
||||
- _SrcBlend: 1
|
||||
- _StencilRef: 0
|
||||
- _StencilRefDepth: 8
|
||||
- _StencilRefDistortionVec: 4
|
||||
- _StencilRefGBuffer: 10
|
||||
- _StencilRefMV: 40
|
||||
- _StencilWriteMask: 6
|
||||
- _StencilWriteMaskDepth: 8
|
||||
- _StencilWriteMaskDistortionVec: 4
|
||||
- _StencilWriteMaskGBuffer: 14
|
||||
- _StencilWriteMaskMV: 40
|
||||
- _SupportDecals: 1
|
||||
- _SurfaceType: 0
|
||||
- _TransparentBackfaceEnable: 0
|
||||
- _TransparentCullMode: 2
|
||||
- _TransparentDepthPostpassEnable: 0
|
||||
- _TransparentDepthPrepassEnable: 0
|
||||
- _TransparentSortPriority: 0
|
||||
- _TransparentWritingMotionVec: 0
|
||||
- _TransparentZWrite: 0
|
||||
- _UV_Tiling: 7
|
||||
- _UseAlphaClipping: 0
|
||||
- _UseInstantColor: 0
|
||||
- _UsePom: 0
|
||||
- _UseShadowThreshold: 0
|
||||
- _UseWorldAlign: 0
|
||||
- _WorldAlignTile: 512
|
||||
- _ZTestDepthEqualForOpaque: 3
|
||||
- _ZTestGBuffer: 3
|
||||
- _ZTestTransparent: 4
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _AlbedoTint: {r: 0.7169812, g: 0.7169812, b: 0.7169812, a: 0}
|
||||
- _ChangeInstantColor: {r: 0.6320754, g: 0.6320754, b: 0.6320754, a: 0}
|
||||
- _Dirt_Color: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _DoubleSidedConstants: {r: 1, g: 1, b: -1, a: 0}
|
||||
- _EdgeColor: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _EmissionColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _EmissiveColor: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _PomOffset: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _SecondColorMultiply: {r: 1, g: 1, b: 1, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
--- !u!114 &3696197708043593277
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 12
|
||||
hdPluginSubTargetMaterialVersions:
|
||||
m_Keys: []
|
||||
m_Values:
|
||||
@@ -1,15 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 5eae6592ca12bce4e9e58861eaebff1b
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 330726
|
||||
packageName: Orbital Base Environment
|
||||
packageVersion: 1.0
|
||||
assetPath: Assets/BefourStudios/Art/Materials/M_BathroomMetalDarker.mat
|
||||
uploadId: 782779
|
||||
@@ -1,187 +0,0 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: M_BathroomMirror
|
||||
m_Shader: {fileID: -6465566751694194690, guid: bb2b9fd294686ac489b6c02ab0921e98,
|
||||
type: 3}
|
||||
m_ValidKeywords:
|
||||
- _ALPHATEST_ON
|
||||
- _DISABLE_SSR_TRANSPARENT
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 1
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: 2475
|
||||
stringTagMap:
|
||||
MotionVector: User
|
||||
RenderType: TransparentCutout
|
||||
disabledShaderPasses:
|
||||
- TransparentDepthPrepass
|
||||
- TransparentDepthPostpass
|
||||
- TransparentBackface
|
||||
- RayTracingPrepass
|
||||
- MOTIONVECTORS
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _AlphaClipping:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BaseTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000002601931908987800148, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MaskTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NormalTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000000211747456392771713, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ORMTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000008655299813024695645, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SecondTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _WorldAlignTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _A_Dirt: 0
|
||||
- _A_Edge: 0
|
||||
- _A_Mask: 0
|
||||
- _AddPrecomputedVelocity: 0
|
||||
- _AlphaCutoffEnable: 1
|
||||
- _AlphaDstBlend: 0
|
||||
- _AlphaOpacity: 0.75
|
||||
- _AlphaSrcBlend: 1
|
||||
- _AlphaToMask: 0
|
||||
- _AlphaToMaskInspectorValue: 0
|
||||
- _AlphaTreshold: 0.45
|
||||
- _B_Dirt: 0
|
||||
- _B_Edge: 0
|
||||
- _B_Mask: 0
|
||||
- _BaseColorMultiply: 1
|
||||
- _BlendMode: 0
|
||||
- _ChangeInstantColor_1: 0
|
||||
- _ConservativeDepthOffsetEnable: 0
|
||||
- _CullMode: 2
|
||||
- _CullModeForward: 2
|
||||
- _DepthOffsetEnable: 0
|
||||
- _Dirt_Intensity: 0.5
|
||||
- _DoubleSidedEnable: 0
|
||||
- _DoubleSidedGIMode: 0
|
||||
- _DoubleSidedNormalMode: 2
|
||||
- _DstBlend: 0
|
||||
- _Edges_Intensity: 1
|
||||
- _Emissive: 0
|
||||
- _EmissiveIntensity: 1
|
||||
- _EnableBlendModePreserveSpecularLighting: 1
|
||||
- _EnableDirt: 0
|
||||
- _EnableEdge: 0
|
||||
- _EnableFogOnTransparent: 1
|
||||
- _G_Dirt: 0
|
||||
- _G_Edge: 0
|
||||
- _G_Mask: 0
|
||||
- _MaskAdjustment: 1
|
||||
- _MetallicIntensity: 0.76
|
||||
- _NormalIntensity: 1
|
||||
- _OpaqueCullMode: 2
|
||||
- _PomHeight: 1
|
||||
- _PomQuality: 32
|
||||
- _R_Dirt: 0
|
||||
- _R_Edge: 0
|
||||
- _R_Mask: 0
|
||||
- _RayTracing: 0
|
||||
- _ReceivesSSR: 1
|
||||
- _ReceivesSSRTransparent: 0
|
||||
- _RefractionModel: 0
|
||||
- _RenderQueueType: 1
|
||||
- _RequireSplitLighting: 0
|
||||
- _Saturation: 1
|
||||
- _SaturationWorldAlign: 1
|
||||
- _SecondTextureColorMultiply: 1
|
||||
- _SmoothnessIntensity: 0.02
|
||||
- _SrcBlend: 1
|
||||
- _StencilRef: 0
|
||||
- _StencilRefDepth: 8
|
||||
- _StencilRefDistortionVec: 4
|
||||
- _StencilRefGBuffer: 10
|
||||
- _StencilRefMV: 40
|
||||
- _StencilWriteMask: 6
|
||||
- _StencilWriteMaskDepth: 8
|
||||
- _StencilWriteMaskDistortionVec: 4
|
||||
- _StencilWriteMaskGBuffer: 14
|
||||
- _StencilWriteMaskMV: 40
|
||||
- _SupportDecals: 1
|
||||
- _SurfaceType: 0
|
||||
- _TransparentBackfaceEnable: 0
|
||||
- _TransparentCullMode: 2
|
||||
- _TransparentDepthPostpassEnable: 0
|
||||
- _TransparentDepthPrepassEnable: 0
|
||||
- _TransparentSortPriority: 0
|
||||
- _TransparentWritingMotionVec: 0
|
||||
- _TransparentZWrite: 0
|
||||
- _UV_Tiling: 1.8
|
||||
- _UseAlphaClipping: 0
|
||||
- _UseInstantColor: 0
|
||||
- _UsePom: 0
|
||||
- _UseShadowThreshold: 0
|
||||
- _UseWorldAlign: 0
|
||||
- _WorldAlignTile: 512
|
||||
- _ZTestDepthEqualForOpaque: 3
|
||||
- _ZTestGBuffer: 3
|
||||
- _ZTestTransparent: 4
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _AlbedoTint: {r: 0.9150943, g: 0.9150943, b: 0.9150943, a: 0}
|
||||
- _ChangeInstantColor: {r: 0.6320754, g: 0.6320754, b: 0.6320754, a: 0}
|
||||
- _Dirt_Color: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _DoubleSidedConstants: {r: 1, g: 1, b: -1, a: 0}
|
||||
- _EdgeColor: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _EmissionColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _EmissiveColor: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _PomOffset: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _SecondColorMultiply: {r: 1, g: 1, b: 1, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
--- !u!114 &3696197708043593277
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 12
|
||||
hdPluginSubTargetMaterialVersions:
|
||||
m_Keys: []
|
||||
m_Values:
|
||||
@@ -1,15 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 1023a8bb0cbbb994e86db21a651a98e2
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 330726
|
||||
packageName: Orbital Base Environment
|
||||
packageVersion: 1.0
|
||||
assetPath: Assets/BefourStudios/Art/Materials/M_BathroomMirror.mat
|
||||
uploadId: 782779
|
||||
@@ -1,187 +0,0 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: M_Battery
|
||||
m_Shader: {fileID: -6465566751694194690, guid: bb2b9fd294686ac489b6c02ab0921e98,
|
||||
type: 3}
|
||||
m_ValidKeywords:
|
||||
- _ALPHATEST_ON
|
||||
- _DISABLE_SSR_TRANSPARENT
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 1
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: 2475
|
||||
stringTagMap:
|
||||
MotionVector: User
|
||||
RenderType: TransparentCutout
|
||||
disabledShaderPasses:
|
||||
- TransparentDepthPrepass
|
||||
- TransparentDepthPostpass
|
||||
- TransparentBackface
|
||||
- RayTracingPrepass
|
||||
- MOTIONVECTORS
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _AlphaClipping:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BaseTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000010493056699679970956, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MaskTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NormalTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000001541250449954300728, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ORMTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000017948196317557864774, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SecondTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _WorldAlignTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _A_Dirt: 0
|
||||
- _A_Edge: 0
|
||||
- _A_Mask: 0
|
||||
- _AddPrecomputedVelocity: 0
|
||||
- _AlphaCutoffEnable: 1
|
||||
- _AlphaDstBlend: 0
|
||||
- _AlphaOpacity: 0.75
|
||||
- _AlphaSrcBlend: 1
|
||||
- _AlphaToMask: 0
|
||||
- _AlphaToMaskInspectorValue: 0
|
||||
- _AlphaTreshold: 0.45
|
||||
- _B_Dirt: 0
|
||||
- _B_Edge: 0
|
||||
- _B_Mask: 0
|
||||
- _BaseColorMultiply: 1
|
||||
- _BlendMode: 0
|
||||
- _ChangeInstantColor_1: 0
|
||||
- _ConservativeDepthOffsetEnable: 0
|
||||
- _CullMode: 2
|
||||
- _CullModeForward: 2
|
||||
- _DepthOffsetEnable: 0
|
||||
- _Dirt_Intensity: 0.5
|
||||
- _DoubleSidedEnable: 0
|
||||
- _DoubleSidedGIMode: 0
|
||||
- _DoubleSidedNormalMode: 2
|
||||
- _DstBlend: 0
|
||||
- _Edges_Intensity: 1
|
||||
- _Emissive: 1
|
||||
- _EmissiveIntensity: 3
|
||||
- _EnableBlendModePreserveSpecularLighting: 1
|
||||
- _EnableDirt: 0
|
||||
- _EnableEdge: 0
|
||||
- _EnableFogOnTransparent: 1
|
||||
- _G_Dirt: 0
|
||||
- _G_Edge: 0
|
||||
- _G_Mask: 0
|
||||
- _MaskAdjustment: 1
|
||||
- _MetallicIntensity: 0.75
|
||||
- _NormalIntensity: 1
|
||||
- _OpaqueCullMode: 2
|
||||
- _PomHeight: 1
|
||||
- _PomQuality: 32
|
||||
- _R_Dirt: 0
|
||||
- _R_Edge: 0
|
||||
- _R_Mask: 0
|
||||
- _RayTracing: 0
|
||||
- _ReceivesSSR: 1
|
||||
- _ReceivesSSRTransparent: 0
|
||||
- _RefractionModel: 0
|
||||
- _RenderQueueType: 1
|
||||
- _RequireSplitLighting: 0
|
||||
- _Saturation: 1
|
||||
- _SaturationWorldAlign: 1
|
||||
- _SecondTextureColorMultiply: 1
|
||||
- _SmoothnessIntensity: 0.99
|
||||
- _SrcBlend: 1
|
||||
- _StencilRef: 0
|
||||
- _StencilRefDepth: 8
|
||||
- _StencilRefDistortionVec: 4
|
||||
- _StencilRefGBuffer: 10
|
||||
- _StencilRefMV: 40
|
||||
- _StencilWriteMask: 6
|
||||
- _StencilWriteMaskDepth: 8
|
||||
- _StencilWriteMaskDistortionVec: 4
|
||||
- _StencilWriteMaskGBuffer: 14
|
||||
- _StencilWriteMaskMV: 40
|
||||
- _SupportDecals: 1
|
||||
- _SurfaceType: 0
|
||||
- _TransparentBackfaceEnable: 0
|
||||
- _TransparentCullMode: 2
|
||||
- _TransparentDepthPostpassEnable: 0
|
||||
- _TransparentDepthPrepassEnable: 0
|
||||
- _TransparentSortPriority: 0
|
||||
- _TransparentWritingMotionVec: 0
|
||||
- _TransparentZWrite: 0
|
||||
- _UV_Tiling: 1
|
||||
- _UseAlphaClipping: 0
|
||||
- _UseInstantColor: 0
|
||||
- _UsePom: 0
|
||||
- _UseShadowThreshold: 0
|
||||
- _UseWorldAlign: 0
|
||||
- _WorldAlignTile: 512
|
||||
- _ZTestDepthEqualForOpaque: 3
|
||||
- _ZTestGBuffer: 3
|
||||
- _ZTestTransparent: 4
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _AlbedoTint: {r: 0.9150943, g: 0.9150943, b: 0.9150943, a: 0}
|
||||
- _ChangeInstantColor: {r: 0.6320754, g: 0.6320754, b: 0.6320754, a: 0}
|
||||
- _Dirt_Color: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _DoubleSidedConstants: {r: 1, g: 1, b: -1, a: 0}
|
||||
- _EdgeColor: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _EmissionColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _EmissiveColor: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _PomOffset: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _SecondColorMultiply: {r: 1, g: 1, b: 1, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
--- !u!114 &3696197708043593277
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 12
|
||||
hdPluginSubTargetMaterialVersions:
|
||||
m_Keys: []
|
||||
m_Values:
|
||||
@@ -1,15 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 95ccfe668558eec4aafe2cacacbe3be6
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 330726
|
||||
packageName: Orbital Base Environment
|
||||
packageVersion: 1.0
|
||||
assetPath: Assets/BefourStudios/Art/Materials/M_Battery.mat
|
||||
uploadId: 782779
|
||||
@@ -1,186 +0,0 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: M_BatteryActive
|
||||
m_Shader: {fileID: -6465566751694194690, guid: bb2b9fd294686ac489b6c02ab0921e98,
|
||||
type: 3}
|
||||
m_ValidKeywords:
|
||||
- _ALPHATEST_ON
|
||||
- _DISABLE_SSR_TRANSPARENT
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 1
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: 2475
|
||||
stringTagMap:
|
||||
MotionVector: User
|
||||
RenderType: TransparentCutout
|
||||
disabledShaderPasses:
|
||||
- TransparentDepthPrepass
|
||||
- TransparentDepthPostpass
|
||||
- TransparentBackface
|
||||
- RayTracingPrepass
|
||||
- MOTIONVECTORS
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _AlphaClipping:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BaseTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000010493056699679970956, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MaskTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NormalTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000001541250449954300728, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ORMTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000017948196317557864774, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SecondTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _WorldAlignTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _A_Dirt: 0
|
||||
- _A_Edge: 0
|
||||
- _A_Mask: 0
|
||||
- _AddPrecomputedVelocity: 0
|
||||
- _AlphaCutoffEnable: 1
|
||||
- _AlphaDstBlend: 0
|
||||
- _AlphaOpacity: 0.75
|
||||
- _AlphaSrcBlend: 1
|
||||
- _AlphaToMask: 0
|
||||
- _AlphaToMaskInspectorValue: 0
|
||||
- _AlphaTreshold: 0.45
|
||||
- _B_Dirt: 0
|
||||
- _B_Edge: 0
|
||||
- _B_Mask: 0
|
||||
- _BaseColorMultiply: 1
|
||||
- _BlendMode: 0
|
||||
- _ChangeInstantColor_1: 0
|
||||
- _ConservativeDepthOffsetEnable: 0
|
||||
- _CullMode: 2
|
||||
- _CullModeForward: 2
|
||||
- _DepthOffsetEnable: 0
|
||||
- _Dirt_Intensity: 0.5
|
||||
- _DoubleSidedEnable: 0
|
||||
- _DoubleSidedGIMode: 0
|
||||
- _DoubleSidedNormalMode: 2
|
||||
- _DstBlend: 0
|
||||
- _Edges_Intensity: 1
|
||||
- _Emissive: 1
|
||||
- _EmissiveIntensity: 1
|
||||
- _EnableBlendModePreserveSpecularLighting: 1
|
||||
- _EnableDirt: 0
|
||||
- _EnableEdge: 0
|
||||
- _EnableFogOnTransparent: 1
|
||||
- _G_Dirt: 0
|
||||
- _G_Edge: 0
|
||||
- _G_Mask: 0
|
||||
- _MaskAdjustment: 1
|
||||
- _MetallicIntensity: 0.75
|
||||
- _NormalIntensity: 1
|
||||
- _OpaqueCullMode: 2
|
||||
- _PomHeight: 1
|
||||
- _PomQuality: 32
|
||||
- _R_Dirt: 0
|
||||
- _R_Edge: 0
|
||||
- _R_Mask: 0
|
||||
- _RayTracing: 0
|
||||
- _ReceivesSSR: 1
|
||||
- _ReceivesSSRTransparent: 0
|
||||
- _RefractionModel: 0
|
||||
- _RenderQueueType: 1
|
||||
- _RequireSplitLighting: 0
|
||||
- _Saturation: 1
|
||||
- _SaturationWorldAlign: 1
|
||||
- _SecondTextureColorMultiply: 1
|
||||
- _SmoothnessIntensity: 0.99
|
||||
- _SrcBlend: 1
|
||||
- _StencilRef: 0
|
||||
- _StencilRefDepth: 8
|
||||
- _StencilRefDistortionVec: 4
|
||||
- _StencilRefGBuffer: 10
|
||||
- _StencilRefMV: 40
|
||||
- _StencilWriteMask: 6
|
||||
- _StencilWriteMaskDepth: 8
|
||||
- _StencilWriteMaskDistortionVec: 4
|
||||
- _StencilWriteMaskGBuffer: 14
|
||||
- _StencilWriteMaskMV: 40
|
||||
- _SupportDecals: 1
|
||||
- _SurfaceType: 0
|
||||
- _TransparentBackfaceEnable: 0
|
||||
- _TransparentCullMode: 2
|
||||
- _TransparentDepthPostpassEnable: 0
|
||||
- _TransparentDepthPrepassEnable: 0
|
||||
- _TransparentSortPriority: 0
|
||||
- _TransparentWritingMotionVec: 0
|
||||
- _TransparentZWrite: 0
|
||||
- _UV_Tiling: 1
|
||||
- _UseAlphaClipping: 0
|
||||
- _UseInstantColor: 1
|
||||
- _UsePom: 0
|
||||
- _UseShadowThreshold: 0
|
||||
- _UseWorldAlign: 0
|
||||
- _WorldAlignTile: 512
|
||||
- _ZTestDepthEqualForOpaque: 3
|
||||
- _ZTestGBuffer: 3
|
||||
- _ZTestTransparent: 4
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _AlbedoTint: {r: 0.9150943, g: 0.9150943, b: 0.9150943, a: 0}
|
||||
- _ChangeInstantColor: {r: 0.6320754, g: 0.6320754, b: 0.6320754, a: 0}
|
||||
- _Dirt_Color: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _DoubleSidedConstants: {r: 1, g: 1, b: -1, a: 0}
|
||||
- _EdgeColor: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _EmissionColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _EmissiveColor: {r: 1, g: 0.68235296, b: 0.38823533, a: 0}
|
||||
- _SecondColorMultiply: {r: 1, g: 1, b: 1, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
--- !u!114 &3696197708043593277
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 12
|
||||
hdPluginSubTargetMaterialVersions:
|
||||
m_Keys: []
|
||||
m_Values:
|
||||
@@ -1,15 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: a25bc477ef2319040a7b2a01ecd1928f
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 330726
|
||||
packageName: Orbital Base Environment
|
||||
packageVersion: 1.0
|
||||
assetPath: Assets/BefourStudios/Art/Materials/M_BatteryActive.mat
|
||||
uploadId: 782779
|
||||
@@ -1,193 +0,0 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: M_BatteryCharger
|
||||
m_Shader: {fileID: -6465566751694194690, guid: bb2b9fd294686ac489b6c02ab0921e98,
|
||||
type: 3}
|
||||
m_ValidKeywords:
|
||||
- _ALPHATEST_ON
|
||||
- _DISABLE_SSR_TRANSPARENT
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 1
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: 2475
|
||||
stringTagMap:
|
||||
MotionVector: User
|
||||
RenderType: TransparentCutout
|
||||
disabledShaderPasses:
|
||||
- TransparentDepthPrepass
|
||||
- TransparentDepthPostpass
|
||||
- TransparentBackface
|
||||
- RayTracingPrepass
|
||||
- MOTIONVECTORS
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _AlphaClipping:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BaseTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000010493056699679970956, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MaskTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NormalTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000001541250449954300728, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ORMTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000017948196317557864774, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SecondTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _Texture2DAsset_50d8aa134ded4f3ba8216b2c6da2550a_Out_0:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000011191443335310782487, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _WorldAlignTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _A_Dirt: 0
|
||||
- _A_Edge: 0
|
||||
- _A_Mask: 0
|
||||
- _AddPrecomputedVelocity: 0
|
||||
- _AddSecondNormal: 0
|
||||
- _AlphaCutoffEnable: 1
|
||||
- _AlphaDstBlend: 0
|
||||
- _AlphaOpacity: 0.75
|
||||
- _AlphaSrcBlend: 1
|
||||
- _AlphaToMask: 0
|
||||
- _AlphaToMaskInspectorValue: 0
|
||||
- _AlphaTreshold: 0.45
|
||||
- _B_Dirt: 0
|
||||
- _B_Edge: 0
|
||||
- _B_Mask: 0
|
||||
- _BaseColorMultiply: 1
|
||||
- _BlendMode: 0
|
||||
- _ChangeInstantColor_1: 0
|
||||
- _ConservativeDepthOffsetEnable: 0
|
||||
- _CullMode: 2
|
||||
- _CullModeForward: 2
|
||||
- _DepthOffsetEnable: 0
|
||||
- _Dirt_Intensity: 0.5
|
||||
- _DoubleSidedEnable: 0
|
||||
- _DoubleSidedGIMode: 0
|
||||
- _DoubleSidedNormalMode: 2
|
||||
- _DstBlend: 0
|
||||
- _Edges_Intensity: 1
|
||||
- _Emissive: 1
|
||||
- _EmissiveIntensity: 2
|
||||
- _EnableBlendModePreserveSpecularLighting: 1
|
||||
- _EnableDirt: 0
|
||||
- _EnableEdge: 0
|
||||
- _EnableFogOnTransparent: 1
|
||||
- _G_Dirt: 0
|
||||
- _G_Edge: 0
|
||||
- _G_Mask: 0
|
||||
- _MaskAdjustment: 1
|
||||
- _MetallicIntensity: 0.75
|
||||
- _NormalIntensity: 1
|
||||
- _OpaqueCullMode: 2
|
||||
- _PomHeight: 1
|
||||
- _PomQuality: 32
|
||||
- _R_Dirt: 0
|
||||
- _R_Edge: 0
|
||||
- _R_Mask: 0
|
||||
- _RayTracing: 0
|
||||
- _ReceivesSSR: 1
|
||||
- _ReceivesSSRTransparent: 0
|
||||
- _RefractionModel: 0
|
||||
- _RenderQueueType: 1
|
||||
- _RequireSplitLighting: 0
|
||||
- _Saturation: 1
|
||||
- _SaturationWorldAlign: 1
|
||||
- _SecondNormalTile: 4.68
|
||||
- _SecondTextureColorMultiply: 1
|
||||
- _SmoothnessIntensity: 0.99
|
||||
- _SrcBlend: 1
|
||||
- _StencilRef: 0
|
||||
- _StencilRefDepth: 8
|
||||
- _StencilRefDistortionVec: 4
|
||||
- _StencilRefGBuffer: 10
|
||||
- _StencilRefMV: 40
|
||||
- _StencilWriteMask: 6
|
||||
- _StencilWriteMaskDepth: 8
|
||||
- _StencilWriteMaskDistortionVec: 4
|
||||
- _StencilWriteMaskGBuffer: 14
|
||||
- _StencilWriteMaskMV: 40
|
||||
- _SupportDecals: 1
|
||||
- _SurfaceType: 0
|
||||
- _TransparentBackfaceEnable: 0
|
||||
- _TransparentCullMode: 2
|
||||
- _TransparentDepthPostpassEnable: 0
|
||||
- _TransparentDepthPrepassEnable: 0
|
||||
- _TransparentSortPriority: 0
|
||||
- _TransparentWritingMotionVec: 0
|
||||
- _TransparentZWrite: 0
|
||||
- _UV_Tiling: 1
|
||||
- _UseAlphaClipping: 0
|
||||
- _UseInstantColor: 1
|
||||
- _UsePom: 0
|
||||
- _UseShadowThreshold: 0
|
||||
- _UseWorldAlign: 0
|
||||
- _WorldAlignTile: 512
|
||||
- _ZTestDepthEqualForOpaque: 3
|
||||
- _ZTestGBuffer: 3
|
||||
- _ZTestTransparent: 4
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _AlbedoTint: {r: 0.9150943, g: 0.9150943, b: 0.9150943, a: 0}
|
||||
- _ChangeInstantColor: {r: 0.6320754, g: 0.6320754, b: 0.6320754, a: 0}
|
||||
- _Dirt_Color: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _DoubleSidedConstants: {r: 1, g: 1, b: -1, a: 0}
|
||||
- _EdgeColor: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _EmissionColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _EmissiveColor: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _PomOffset: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _SecondColorMultiply: {r: 1, g: 1, b: 1, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
--- !u!114 &3696197708043593277
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 12
|
||||
hdPluginSubTargetMaterialVersions:
|
||||
m_Keys: []
|
||||
m_Values:
|
||||
@@ -1,15 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: ddf96cebea647844ea49cc490d873653
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 330726
|
||||
packageName: Orbital Base Environment
|
||||
packageVersion: 1.0
|
||||
assetPath: Assets/BefourStudios/Art/Materials/M_BatteryCharger.mat
|
||||
uploadId: 782779
|
||||
@@ -1,198 +0,0 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: M_BatteryChargerDisabled
|
||||
m_Shader: {fileID: -6465566751694194690, guid: bb2b9fd294686ac489b6c02ab0921e98,
|
||||
type: 3}
|
||||
m_ValidKeywords:
|
||||
- _ALPHATEST_ON
|
||||
- _DISABLE_SSR_TRANSPARENT
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 1
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: 2475
|
||||
stringTagMap:
|
||||
MotionVector: User
|
||||
RenderType: TransparentCutout
|
||||
disabledShaderPasses:
|
||||
- TransparentDepthPrepass
|
||||
- TransparentDepthPostpass
|
||||
- TransparentBackface
|
||||
- RayTracingPrepass
|
||||
- MOTIONVECTORS
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _AlphaClipping:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BaseTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000010493056699679970956, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MaskTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NormalTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000001541250449954300728, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ORMTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000017948196317557864774, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SecondNormalTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SecondTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _Texture2DAsset_50d8aa134ded4f3ba8216b2c6da2550a_Out_0:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000011191443335310782487, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _WorldAlignTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _A_Dirt: 0
|
||||
- _A_Edge: 0
|
||||
- _A_Mask: 0
|
||||
- _AddPrecomputedVelocity: 0
|
||||
- _AddSecondNormal: 0
|
||||
- _AlphaCutoffEnable: 1
|
||||
- _AlphaDstBlend: 0
|
||||
- _AlphaOpacity: 0.75
|
||||
- _AlphaSrcBlend: 1
|
||||
- _AlphaToMask: 0
|
||||
- _AlphaToMaskInspectorValue: 0
|
||||
- _AlphaTreshold: 0.45
|
||||
- _B_Dirt: 0
|
||||
- _B_Edge: 0
|
||||
- _B_Mask: 0
|
||||
- _BaseColorMultiply: 1.45
|
||||
- _BlendMode: 0
|
||||
- _ChangeInstantColor_1: 0
|
||||
- _ConservativeDepthOffsetEnable: 0
|
||||
- _CullMode: 2
|
||||
- _CullModeForward: 2
|
||||
- _DepthOffsetEnable: 0
|
||||
- _Dirt_Intensity: 0.5
|
||||
- _DoubleSidedEnable: 0
|
||||
- _DoubleSidedGIMode: 0
|
||||
- _DoubleSidedNormalMode: 2
|
||||
- _DstBlend: 0
|
||||
- _Edges_Intensity: 1
|
||||
- _Emissive: 0
|
||||
- _EmissiveIntensity: 1
|
||||
- _EnableBlendModePreserveSpecularLighting: 1
|
||||
- _EnableDirt: 0
|
||||
- _EnableEdge: 0
|
||||
- _EnableFogOnTransparent: 1
|
||||
- _G_Dirt: 0
|
||||
- _G_Edge: 0
|
||||
- _G_Mask: 0
|
||||
- _MaskAdjustment: 1
|
||||
- _MetallicIntensity: 0.64
|
||||
- _NormalIntensity: 1
|
||||
- _OpaqueCullMode: 2
|
||||
- _PomHeight: 1
|
||||
- _PomQuality: 32
|
||||
- _R_Dirt: 0
|
||||
- _R_Edge: 0
|
||||
- _R_Mask: 0
|
||||
- _RayTracing: 0
|
||||
- _ReceivesSSR: 1
|
||||
- _ReceivesSSRTransparent: 0
|
||||
- _RefractionModel: 0
|
||||
- _RenderQueueType: 1
|
||||
- _RequireSplitLighting: 0
|
||||
- _Saturation: 1
|
||||
- _SaturationWorldAlign: 1
|
||||
- _SecondNormalBlend: 1
|
||||
- _SecondNormalTile: 4.68
|
||||
- _SecondTextureColorMultiply: 1
|
||||
- _SmoothnessIntensity: 0.99
|
||||
- _SrcBlend: 1
|
||||
- _StencilRef: 0
|
||||
- _StencilRefDepth: 8
|
||||
- _StencilRefDistortionVec: 4
|
||||
- _StencilRefGBuffer: 10
|
||||
- _StencilRefMV: 40
|
||||
- _StencilWriteMask: 6
|
||||
- _StencilWriteMaskDepth: 8
|
||||
- _StencilWriteMaskDistortionVec: 4
|
||||
- _StencilWriteMaskGBuffer: 14
|
||||
- _StencilWriteMaskMV: 40
|
||||
- _SupportDecals: 1
|
||||
- _SurfaceType: 0
|
||||
- _TransparentBackfaceEnable: 0
|
||||
- _TransparentCullMode: 2
|
||||
- _TransparentDepthPostpassEnable: 0
|
||||
- _TransparentDepthPrepassEnable: 0
|
||||
- _TransparentSortPriority: 0
|
||||
- _TransparentWritingMotionVec: 0
|
||||
- _TransparentZWrite: 0
|
||||
- _UV_Tiling: 1
|
||||
- _UseAlphaClipping: 0
|
||||
- _UseInstantColor: 1
|
||||
- _UsePom: 0
|
||||
- _UseShadowThreshold: 0
|
||||
- _UseWorldAlign: 0
|
||||
- _WorldAlignTile: 512
|
||||
- _ZTestDepthEqualForOpaque: 3
|
||||
- _ZTestGBuffer: 3
|
||||
- _ZTestTransparent: 4
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _AlbedoTint: {r: 0.9150943, g: 0.9150943, b: 0.9150943, a: 0}
|
||||
- _ChangeInstantColor: {r: 0.6320754, g: 0.6320754, b: 0.6320754, a: 0}
|
||||
- _Dirt_Color: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _DoubleSidedConstants: {r: 1, g: 1, b: -1, a: 0}
|
||||
- _EdgeColor: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _EmissionColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _EmissiveColor: {r: 1, g: 0.68235296, b: 0.38823533, a: 0}
|
||||
- _PomOffset: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _SecondColorMultiply: {r: 1, g: 1, b: 1, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
--- !u!114 &3696197708043593277
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 12
|
||||
hdPluginSubTargetMaterialVersions:
|
||||
m_Keys: []
|
||||
m_Values:
|
||||
@@ -1,15 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 60c1ffd4d18bcac42b9242e99c4831f5
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 330726
|
||||
packageName: Orbital Base Environment
|
||||
packageVersion: 1.0
|
||||
assetPath: Assets/BefourStudios/Art/Materials/M_BatteryChargerDisabled.mat
|
||||
uploadId: 782779
|
||||
@@ -1,187 +0,0 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: M_BatteryCharging
|
||||
m_Shader: {fileID: -6465566751694194690, guid: bb2b9fd294686ac489b6c02ab0921e98,
|
||||
type: 3}
|
||||
m_ValidKeywords:
|
||||
- _ALPHATEST_ON
|
||||
- _DISABLE_SSR_TRANSPARENT
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 1
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: 2475
|
||||
stringTagMap:
|
||||
MotionVector: User
|
||||
RenderType: TransparentCutout
|
||||
disabledShaderPasses:
|
||||
- TransparentDepthPrepass
|
||||
- TransparentDepthPostpass
|
||||
- TransparentBackface
|
||||
- RayTracingPrepass
|
||||
- MOTIONVECTORS
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _AlphaClipping:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BaseTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000010493056699679970956, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MaskTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NormalTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000001541250449954300728, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ORMTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000017948196317557864774, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SecondTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _WorldAlignTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _A_Dirt: 0
|
||||
- _A_Edge: 0
|
||||
- _A_Mask: 0
|
||||
- _AddPrecomputedVelocity: 0
|
||||
- _AlphaCutoffEnable: 1
|
||||
- _AlphaDstBlend: 0
|
||||
- _AlphaOpacity: 0.75
|
||||
- _AlphaSrcBlend: 1
|
||||
- _AlphaToMask: 0
|
||||
- _AlphaToMaskInspectorValue: 0
|
||||
- _AlphaTreshold: 0.45
|
||||
- _B_Dirt: 0
|
||||
- _B_Edge: 0
|
||||
- _B_Mask: 0
|
||||
- _BaseColorMultiply: 1
|
||||
- _BlendMode: 0
|
||||
- _ChangeInstantColor_1: 0
|
||||
- _ConservativeDepthOffsetEnable: 0
|
||||
- _CullMode: 2
|
||||
- _CullModeForward: 2
|
||||
- _DepthOffsetEnable: 0
|
||||
- _Dirt_Intensity: 0.5
|
||||
- _DoubleSidedEnable: 0
|
||||
- _DoubleSidedGIMode: 0
|
||||
- _DoubleSidedNormalMode: 2
|
||||
- _DstBlend: 0
|
||||
- _Edges_Intensity: 1
|
||||
- _Emissive: 1
|
||||
- _EmissiveIntensity: 1
|
||||
- _EnableBlendModePreserveSpecularLighting: 1
|
||||
- _EnableDirt: 0
|
||||
- _EnableEdge: 0
|
||||
- _EnableFogOnTransparent: 1
|
||||
- _G_Dirt: 0
|
||||
- _G_Edge: 0
|
||||
- _G_Mask: 0
|
||||
- _MaskAdjustment: 1
|
||||
- _MetallicIntensity: 0.75
|
||||
- _NormalIntensity: 1
|
||||
- _OpaqueCullMode: 2
|
||||
- _PomHeight: 1
|
||||
- _PomQuality: 32
|
||||
- _R_Dirt: 0
|
||||
- _R_Edge: 0
|
||||
- _R_Mask: 0
|
||||
- _RayTracing: 0
|
||||
- _ReceivesSSR: 1
|
||||
- _ReceivesSSRTransparent: 0
|
||||
- _RefractionModel: 0
|
||||
- _RenderQueueType: 1
|
||||
- _RequireSplitLighting: 0
|
||||
- _Saturation: 1
|
||||
- _SaturationWorldAlign: 1
|
||||
- _SecondTextureColorMultiply: 1
|
||||
- _SmoothnessIntensity: 0.99
|
||||
- _SrcBlend: 1
|
||||
- _StencilRef: 0
|
||||
- _StencilRefDepth: 8
|
||||
- _StencilRefDistortionVec: 4
|
||||
- _StencilRefGBuffer: 10
|
||||
- _StencilRefMV: 40
|
||||
- _StencilWriteMask: 6
|
||||
- _StencilWriteMaskDepth: 8
|
||||
- _StencilWriteMaskDistortionVec: 4
|
||||
- _StencilWriteMaskGBuffer: 14
|
||||
- _StencilWriteMaskMV: 40
|
||||
- _SupportDecals: 1
|
||||
- _SurfaceType: 0
|
||||
- _TransparentBackfaceEnable: 0
|
||||
- _TransparentCullMode: 2
|
||||
- _TransparentDepthPostpassEnable: 0
|
||||
- _TransparentDepthPrepassEnable: 0
|
||||
- _TransparentSortPriority: 0
|
||||
- _TransparentWritingMotionVec: 0
|
||||
- _TransparentZWrite: 0
|
||||
- _UV_Tiling: 1
|
||||
- _UseAlphaClipping: 0
|
||||
- _UseInstantColor: 1
|
||||
- _UsePom: 0
|
||||
- _UseShadowThreshold: 0
|
||||
- _UseWorldAlign: 0
|
||||
- _WorldAlignTile: 512
|
||||
- _ZTestDepthEqualForOpaque: 3
|
||||
- _ZTestGBuffer: 3
|
||||
- _ZTestTransparent: 4
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _AlbedoTint: {r: 0.9150943, g: 0.9150943, b: 0.9150943, a: 0}
|
||||
- _ChangeInstantColor: {r: 0.6320754, g: 0.6320754, b: 0.6320754, a: 0}
|
||||
- _Dirt_Color: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _DoubleSidedConstants: {r: 1, g: 1, b: -1, a: 0}
|
||||
- _EdgeColor: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _EmissionColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _EmissiveColor: {r: 0.2216981, g: 0.48602694, b: 1, a: 0}
|
||||
- _PomOffset: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _SecondColorMultiply: {r: 1, g: 1, b: 1, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
--- !u!114 &3696197708043593277
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 12
|
||||
hdPluginSubTargetMaterialVersions:
|
||||
m_Keys: []
|
||||
m_Values:
|
||||
@@ -1,15 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: ce69c35790f1df44fb51ee7da251a84c
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 330726
|
||||
packageName: Orbital Base Environment
|
||||
packageVersion: 1.0
|
||||
assetPath: Assets/BefourStudios/Art/Materials/M_BatteryCharging.mat
|
||||
uploadId: 782779
|
||||
@@ -1,198 +0,0 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: M_BatteryDisabled
|
||||
m_Shader: {fileID: -6465566751694194690, guid: bb2b9fd294686ac489b6c02ab0921e98,
|
||||
type: 3}
|
||||
m_ValidKeywords:
|
||||
- _ALPHATEST_ON
|
||||
- _DISABLE_SSR_TRANSPARENT
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 1
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: 2475
|
||||
stringTagMap:
|
||||
MotionVector: User
|
||||
RenderType: TransparentCutout
|
||||
disabledShaderPasses:
|
||||
- TransparentDepthPrepass
|
||||
- TransparentDepthPostpass
|
||||
- TransparentBackface
|
||||
- RayTracingPrepass
|
||||
- MOTIONVECTORS
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _AlphaClipping:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BaseTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000010493056699679970956, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MaskTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NormalTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000001541250449954300728, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ORMTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000017948196317557864774, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SecondNormalTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SecondTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _Texture2DAsset_50d8aa134ded4f3ba8216b2c6da2550a_Out_0:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000011191443335310782487, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _WorldAlignTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _A_Dirt: 0
|
||||
- _A_Edge: 0
|
||||
- _A_Mask: 0
|
||||
- _AddPrecomputedVelocity: 0
|
||||
- _AddSecondNormal: 0
|
||||
- _AlphaCutoffEnable: 1
|
||||
- _AlphaDstBlend: 0
|
||||
- _AlphaOpacity: 0.75
|
||||
- _AlphaSrcBlend: 1
|
||||
- _AlphaToMask: 0
|
||||
- _AlphaToMaskInspectorValue: 0
|
||||
- _AlphaTreshold: 0.45
|
||||
- _B_Dirt: 0
|
||||
- _B_Edge: 0
|
||||
- _B_Mask: 0
|
||||
- _BaseColorMultiply: 1
|
||||
- _BlendMode: 0
|
||||
- _ChangeInstantColor_1: 0
|
||||
- _ConservativeDepthOffsetEnable: 0
|
||||
- _CullMode: 2
|
||||
- _CullModeForward: 2
|
||||
- _DepthOffsetEnable: 0
|
||||
- _Dirt_Intensity: 0.5
|
||||
- _DoubleSidedEnable: 0
|
||||
- _DoubleSidedGIMode: 0
|
||||
- _DoubleSidedNormalMode: 2
|
||||
- _DstBlend: 0
|
||||
- _Edges_Intensity: 1
|
||||
- _Emissive: 0
|
||||
- _EmissiveIntensity: 1
|
||||
- _EnableBlendModePreserveSpecularLighting: 1
|
||||
- _EnableDirt: 0
|
||||
- _EnableEdge: 0
|
||||
- _EnableFogOnTransparent: 1
|
||||
- _G_Dirt: 0
|
||||
- _G_Edge: 0
|
||||
- _G_Mask: 0
|
||||
- _MaskAdjustment: 1
|
||||
- _MetallicIntensity: 0.96
|
||||
- _NormalIntensity: 1
|
||||
- _OpaqueCullMode: 2
|
||||
- _PomHeight: 1
|
||||
- _PomQuality: 32
|
||||
- _R_Dirt: 0
|
||||
- _R_Edge: 0
|
||||
- _R_Mask: 0
|
||||
- _RayTracing: 0
|
||||
- _ReceivesSSR: 1
|
||||
- _ReceivesSSRTransparent: 0
|
||||
- _RefractionModel: 0
|
||||
- _RenderQueueType: 1
|
||||
- _RequireSplitLighting: 0
|
||||
- _Saturation: 1
|
||||
- _SaturationWorldAlign: 1
|
||||
- _SecondNormalBlend: 1
|
||||
- _SecondNormalTile: 4.68
|
||||
- _SecondTextureColorMultiply: 1
|
||||
- _SmoothnessIntensity: 0.99
|
||||
- _SrcBlend: 1
|
||||
- _StencilRef: 0
|
||||
- _StencilRefDepth: 8
|
||||
- _StencilRefDistortionVec: 4
|
||||
- _StencilRefGBuffer: 10
|
||||
- _StencilRefMV: 40
|
||||
- _StencilWriteMask: 6
|
||||
- _StencilWriteMaskDepth: 8
|
||||
- _StencilWriteMaskDistortionVec: 4
|
||||
- _StencilWriteMaskGBuffer: 14
|
||||
- _StencilWriteMaskMV: 40
|
||||
- _SupportDecals: 1
|
||||
- _SurfaceType: 0
|
||||
- _TransparentBackfaceEnable: 0
|
||||
- _TransparentCullMode: 2
|
||||
- _TransparentDepthPostpassEnable: 0
|
||||
- _TransparentDepthPrepassEnable: 0
|
||||
- _TransparentSortPriority: 0
|
||||
- _TransparentWritingMotionVec: 0
|
||||
- _TransparentZWrite: 0
|
||||
- _UV_Tiling: 1
|
||||
- _UseAlphaClipping: 0
|
||||
- _UseInstantColor: 1
|
||||
- _UsePom: 0
|
||||
- _UseShadowThreshold: 0
|
||||
- _UseWorldAlign: 0
|
||||
- _WorldAlignTile: 512
|
||||
- _ZTestDepthEqualForOpaque: 3
|
||||
- _ZTestGBuffer: 3
|
||||
- _ZTestTransparent: 4
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _AlbedoTint: {r: 0.9137255, g: 0.89353395, b: 0.8817451, a: 0}
|
||||
- _ChangeInstantColor: {r: 0.6320754, g: 0.6320754, b: 0.6320754, a: 0}
|
||||
- _Dirt_Color: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _DoubleSidedConstants: {r: 1, g: 1, b: -1, a: 0}
|
||||
- _EdgeColor: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _EmissionColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _EmissiveColor: {r: 1, g: 0.68235296, b: 0.38823533, a: 0}
|
||||
- _PomOffset: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _SecondColorMultiply: {r: 1, g: 1, b: 1, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
--- !u!114 &3696197708043593277
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 12
|
||||
hdPluginSubTargetMaterialVersions:
|
||||
m_Keys: []
|
||||
m_Values:
|
||||
@@ -1,15 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: cefe5836d7056c84b96c1272af65e061
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 330726
|
||||
packageName: Orbital Base Environment
|
||||
packageVersion: 1.0
|
||||
assetPath: Assets/BefourStudios/Art/Materials/M_BatteryDisabled.mat
|
||||
uploadId: 782779
|
||||
@@ -1,186 +0,0 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: M_BatteryNoCharge
|
||||
m_Shader: {fileID: -6465566751694194690, guid: bb2b9fd294686ac489b6c02ab0921e98,
|
||||
type: 3}
|
||||
m_ValidKeywords:
|
||||
- _ALPHATEST_ON
|
||||
- _DISABLE_SSR_TRANSPARENT
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 1
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: 2475
|
||||
stringTagMap:
|
||||
MotionVector: User
|
||||
RenderType: TransparentCutout
|
||||
disabledShaderPasses:
|
||||
- TransparentDepthPrepass
|
||||
- TransparentDepthPostpass
|
||||
- TransparentBackface
|
||||
- RayTracingPrepass
|
||||
- MOTIONVECTORS
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _AlphaClipping:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BaseTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000010493056699679970956, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MaskTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NormalTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000001541250449954300728, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ORMTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000017948196317557864774, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SecondTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _WorldAlignTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _A_Dirt: 0
|
||||
- _A_Edge: 0
|
||||
- _A_Mask: 0
|
||||
- _AddPrecomputedVelocity: 0
|
||||
- _AlphaCutoffEnable: 1
|
||||
- _AlphaDstBlend: 0
|
||||
- _AlphaOpacity: 0.75
|
||||
- _AlphaSrcBlend: 1
|
||||
- _AlphaToMask: 0
|
||||
- _AlphaToMaskInspectorValue: 0
|
||||
- _AlphaTreshold: 0.45
|
||||
- _B_Dirt: 0
|
||||
- _B_Edge: 0
|
||||
- _B_Mask: 0
|
||||
- _BaseColorMultiply: 1
|
||||
- _BlendMode: 0
|
||||
- _ChangeInstantColor_1: 0
|
||||
- _ConservativeDepthOffsetEnable: 0
|
||||
- _CullMode: 2
|
||||
- _CullModeForward: 2
|
||||
- _DepthOffsetEnable: 0
|
||||
- _Dirt_Intensity: 0.5
|
||||
- _DoubleSidedEnable: 0
|
||||
- _DoubleSidedGIMode: 0
|
||||
- _DoubleSidedNormalMode: 2
|
||||
- _DstBlend: 0
|
||||
- _Edges_Intensity: 1
|
||||
- _Emissive: 1
|
||||
- _EmissiveIntensity: 1
|
||||
- _EnableBlendModePreserveSpecularLighting: 1
|
||||
- _EnableDirt: 0
|
||||
- _EnableEdge: 0
|
||||
- _EnableFogOnTransparent: 1
|
||||
- _G_Dirt: 0
|
||||
- _G_Edge: 0
|
||||
- _G_Mask: 0
|
||||
- _MaskAdjustment: 1
|
||||
- _MetallicIntensity: 0.75
|
||||
- _NormalIntensity: 1
|
||||
- _OpaqueCullMode: 2
|
||||
- _PomHeight: 1
|
||||
- _PomQuality: 32
|
||||
- _R_Dirt: 0
|
||||
- _R_Edge: 0
|
||||
- _R_Mask: 0
|
||||
- _RayTracing: 0
|
||||
- _ReceivesSSR: 1
|
||||
- _ReceivesSSRTransparent: 0
|
||||
- _RefractionModel: 0
|
||||
- _RenderQueueType: 1
|
||||
- _RequireSplitLighting: 0
|
||||
- _Saturation: 1
|
||||
- _SaturationWorldAlign: 1
|
||||
- _SecondTextureColorMultiply: 1
|
||||
- _SmoothnessIntensity: 0.99
|
||||
- _SrcBlend: 1
|
||||
- _StencilRef: 0
|
||||
- _StencilRefDepth: 8
|
||||
- _StencilRefDistortionVec: 4
|
||||
- _StencilRefGBuffer: 10
|
||||
- _StencilRefMV: 40
|
||||
- _StencilWriteMask: 6
|
||||
- _StencilWriteMaskDepth: 8
|
||||
- _StencilWriteMaskDistortionVec: 4
|
||||
- _StencilWriteMaskGBuffer: 14
|
||||
- _StencilWriteMaskMV: 40
|
||||
- _SupportDecals: 1
|
||||
- _SurfaceType: 0
|
||||
- _TransparentBackfaceEnable: 0
|
||||
- _TransparentCullMode: 2
|
||||
- _TransparentDepthPostpassEnable: 0
|
||||
- _TransparentDepthPrepassEnable: 0
|
||||
- _TransparentSortPriority: 0
|
||||
- _TransparentWritingMotionVec: 0
|
||||
- _TransparentZWrite: 0
|
||||
- _UV_Tiling: 1
|
||||
- _UseAlphaClipping: 0
|
||||
- _UseInstantColor: 1
|
||||
- _UsePom: 0
|
||||
- _UseShadowThreshold: 0
|
||||
- _UseWorldAlign: 0
|
||||
- _WorldAlignTile: 512
|
||||
- _ZTestDepthEqualForOpaque: 3
|
||||
- _ZTestGBuffer: 3
|
||||
- _ZTestTransparent: 4
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _AlbedoTint: {r: 0.9150943, g: 0.9150943, b: 0.9150943, a: 0}
|
||||
- _ChangeInstantColor: {r: 0.6320754, g: 0.6320754, b: 0.6320754, a: 0}
|
||||
- _Dirt_Color: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _DoubleSidedConstants: {r: 1, g: 1, b: -1, a: 0}
|
||||
- _EdgeColor: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _EmissionColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _EmissiveColor: {r: 1, g: 0.3019608, b: 0, a: 0}
|
||||
- _SecondColorMultiply: {r: 1, g: 1, b: 1, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
--- !u!114 &3696197708043593277
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 12
|
||||
hdPluginSubTargetMaterialVersions:
|
||||
m_Keys: []
|
||||
m_Values:
|
||||
@@ -1,15 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 899b4b656f12e654aa1b2cbcf147d2eb
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 330726
|
||||
packageName: Orbital Base Environment
|
||||
packageVersion: 1.0
|
||||
assetPath: Assets/BefourStudios/Art/Materials/M_BatteryNoCharge.mat
|
||||
uploadId: 782779
|
||||
@@ -1,193 +0,0 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: M_BatteryPod
|
||||
m_Shader: {fileID: -6465566751694194690, guid: bb2b9fd294686ac489b6c02ab0921e98,
|
||||
type: 3}
|
||||
m_ValidKeywords:
|
||||
- _ALPHATEST_ON
|
||||
- _DISABLE_SSR_TRANSPARENT
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 1
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: 2475
|
||||
stringTagMap:
|
||||
MotionVector: User
|
||||
RenderType: TransparentCutout
|
||||
disabledShaderPasses:
|
||||
- TransparentDepthPrepass
|
||||
- TransparentDepthPostpass
|
||||
- TransparentBackface
|
||||
- RayTracingPrepass
|
||||
- MOTIONVECTORS
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _AlphaClipping:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BaseTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000010493056699679970956, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MaskTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NormalTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000001541250449954300728, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ORMTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000017948196317557864774, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SecondTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _Texture2DAsset_50d8aa134ded4f3ba8216b2c6da2550a_Out_0:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000011191443335310782487, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _WorldAlignTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _A_Dirt: 0
|
||||
- _A_Edge: 0
|
||||
- _A_Mask: 0
|
||||
- _AddPrecomputedVelocity: 0
|
||||
- _AddSecondNormal: 0
|
||||
- _AlphaCutoffEnable: 1
|
||||
- _AlphaDstBlend: 0
|
||||
- _AlphaOpacity: 0.75
|
||||
- _AlphaSrcBlend: 1
|
||||
- _AlphaToMask: 0
|
||||
- _AlphaToMaskInspectorValue: 0
|
||||
- _AlphaTreshold: 0.45
|
||||
- _B_Dirt: 0
|
||||
- _B_Edge: 0
|
||||
- _B_Mask: 0
|
||||
- _BaseColorMultiply: 1
|
||||
- _BlendMode: 0
|
||||
- _ChangeInstantColor_1: 0
|
||||
- _ConservativeDepthOffsetEnable: 0
|
||||
- _CullMode: 2
|
||||
- _CullModeForward: 2
|
||||
- _DepthOffsetEnable: 0
|
||||
- _Dirt_Intensity: 0.5
|
||||
- _DoubleSidedEnable: 0
|
||||
- _DoubleSidedGIMode: 0
|
||||
- _DoubleSidedNormalMode: 2
|
||||
- _DstBlend: 0
|
||||
- _Edges_Intensity: 1
|
||||
- _Emissive: 0
|
||||
- _EmissiveIntensity: 1
|
||||
- _EnableBlendModePreserveSpecularLighting: 1
|
||||
- _EnableDirt: 0
|
||||
- _EnableEdge: 0
|
||||
- _EnableFogOnTransparent: 1
|
||||
- _G_Dirt: 0
|
||||
- _G_Edge: 0
|
||||
- _G_Mask: 0
|
||||
- _MaskAdjustment: 1
|
||||
- _MetallicIntensity: 0.75
|
||||
- _NormalIntensity: 1
|
||||
- _OpaqueCullMode: 2
|
||||
- _PomHeight: 1
|
||||
- _PomQuality: 32
|
||||
- _R_Dirt: 0
|
||||
- _R_Edge: 0
|
||||
- _R_Mask: 0
|
||||
- _RayTracing: 0
|
||||
- _ReceivesSSR: 1
|
||||
- _ReceivesSSRTransparent: 0
|
||||
- _RefractionModel: 0
|
||||
- _RenderQueueType: 1
|
||||
- _RequireSplitLighting: 0
|
||||
- _Saturation: 1
|
||||
- _SaturationWorldAlign: 1
|
||||
- _SecondNormalTile: 4.68
|
||||
- _SecondTextureColorMultiply: 1
|
||||
- _SmoothnessIntensity: 0.99
|
||||
- _SrcBlend: 1
|
||||
- _StencilRef: 0
|
||||
- _StencilRefDepth: 8
|
||||
- _StencilRefDistortionVec: 4
|
||||
- _StencilRefGBuffer: 10
|
||||
- _StencilRefMV: 40
|
||||
- _StencilWriteMask: 6
|
||||
- _StencilWriteMaskDepth: 8
|
||||
- _StencilWriteMaskDistortionVec: 4
|
||||
- _StencilWriteMaskGBuffer: 14
|
||||
- _StencilWriteMaskMV: 40
|
||||
- _SupportDecals: 1
|
||||
- _SurfaceType: 0
|
||||
- _TransparentBackfaceEnable: 0
|
||||
- _TransparentCullMode: 2
|
||||
- _TransparentDepthPostpassEnable: 0
|
||||
- _TransparentDepthPrepassEnable: 0
|
||||
- _TransparentSortPriority: 0
|
||||
- _TransparentWritingMotionVec: 0
|
||||
- _TransparentZWrite: 0
|
||||
- _UV_Tiling: 1
|
||||
- _UseAlphaClipping: 0
|
||||
- _UseInstantColor: 1
|
||||
- _UsePom: 0
|
||||
- _UseShadowThreshold: 0
|
||||
- _UseWorldAlign: 0
|
||||
- _WorldAlignTile: 512
|
||||
- _ZTestDepthEqualForOpaque: 3
|
||||
- _ZTestGBuffer: 3
|
||||
- _ZTestTransparent: 4
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _AlbedoTint: {r: 0.9150943, g: 0.9150943, b: 0.9150943, a: 0}
|
||||
- _ChangeInstantColor: {r: 0.6320754, g: 0.6320754, b: 0.6320754, a: 0}
|
||||
- _Dirt_Color: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _DoubleSidedConstants: {r: 1, g: 1, b: -1, a: 0}
|
||||
- _EdgeColor: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _EmissionColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _EmissiveColor: {r: 1, g: 0.68235296, b: 0.38823533, a: 0}
|
||||
- _PomOffset: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _SecondColorMultiply: {r: 1, g: 1, b: 1, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
--- !u!114 &3696197708043593277
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 12
|
||||
hdPluginSubTargetMaterialVersions:
|
||||
m_Keys: []
|
||||
m_Values:
|
||||
@@ -1,15 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: a19de57dd5e466147a79186e435254df
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 330726
|
||||
packageName: Orbital Base Environment
|
||||
packageVersion: 1.0
|
||||
assetPath: Assets/BefourStudios/Art/Materials/M_BatteryPod.mat
|
||||
uploadId: 782779
|
||||
@@ -1,193 +0,0 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: M_Cable
|
||||
m_Shader: {fileID: -6465566751694194690, guid: bb2b9fd294686ac489b6c02ab0921e98,
|
||||
type: 3}
|
||||
m_ValidKeywords:
|
||||
- _ALPHATEST_ON
|
||||
- _DISABLE_SSR_TRANSPARENT
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 1
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: 2475
|
||||
stringTagMap:
|
||||
MotionVector: User
|
||||
RenderType: TransparentCutout
|
||||
disabledShaderPasses:
|
||||
- TransparentDepthPrepass
|
||||
- TransparentDepthPostpass
|
||||
- TransparentBackface
|
||||
- RayTracingPrepass
|
||||
- MOTIONVECTORS
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _AlphaClipping:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BaseTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000012667598805779862604, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MaskTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NormalTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000016173030621458232568, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ORMTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000011520688401912472070, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SecondTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _Texture2DAsset_50d8aa134ded4f3ba8216b2c6da2550a_Out_0:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000011191443335310782487, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _WorldAlignTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _A_Dirt: 0
|
||||
- _A_Edge: 0
|
||||
- _A_Mask: 0
|
||||
- _AddPrecomputedVelocity: 0
|
||||
- _AddSecondNormal: 0
|
||||
- _AlphaCutoffEnable: 1
|
||||
- _AlphaDstBlend: 0
|
||||
- _AlphaOpacity: 0.75
|
||||
- _AlphaSrcBlend: 1
|
||||
- _AlphaToMask: 0
|
||||
- _AlphaToMaskInspectorValue: 0
|
||||
- _AlphaTreshold: 0.45
|
||||
- _B_Dirt: 0
|
||||
- _B_Edge: 0
|
||||
- _B_Mask: 0
|
||||
- _BaseColorMultiply: 1
|
||||
- _BlendMode: 0
|
||||
- _ChangeInstantColor_1: 0
|
||||
- _ConservativeDepthOffsetEnable: 0
|
||||
- _CullMode: 2
|
||||
- _CullModeForward: 2
|
||||
- _DepthOffsetEnable: 0
|
||||
- _Dirt_Intensity: 0.5
|
||||
- _DoubleSidedEnable: 0
|
||||
- _DoubleSidedGIMode: 0
|
||||
- _DoubleSidedNormalMode: 2
|
||||
- _DstBlend: 0
|
||||
- _Edges_Intensity: 1
|
||||
- _Emissive: 1
|
||||
- _EmissiveIntensity: 1
|
||||
- _EnableBlendModePreserveSpecularLighting: 1
|
||||
- _EnableDirt: 0
|
||||
- _EnableEdge: 0
|
||||
- _EnableFogOnTransparent: 1
|
||||
- _G_Dirt: 0
|
||||
- _G_Edge: 0
|
||||
- _G_Mask: 0
|
||||
- _MaskAdjustment: 1
|
||||
- _MetallicIntensity: 0.75
|
||||
- _NormalIntensity: 1
|
||||
- _OpaqueCullMode: 2
|
||||
- _PomHeight: 1
|
||||
- _PomQuality: 32
|
||||
- _R_Dirt: 0
|
||||
- _R_Edge: 0
|
||||
- _R_Mask: 0
|
||||
- _RayTracing: 0
|
||||
- _ReceivesSSR: 1
|
||||
- _ReceivesSSRTransparent: 0
|
||||
- _RefractionModel: 0
|
||||
- _RenderQueueType: 1
|
||||
- _RequireSplitLighting: 0
|
||||
- _Saturation: 1
|
||||
- _SaturationWorldAlign: 1
|
||||
- _SecondNormalTile: 4.68
|
||||
- _SecondTextureColorMultiply: 1
|
||||
- _SmoothnessIntensity: 0.99
|
||||
- _SrcBlend: 1
|
||||
- _StencilRef: 0
|
||||
- _StencilRefDepth: 8
|
||||
- _StencilRefDistortionVec: 4
|
||||
- _StencilRefGBuffer: 10
|
||||
- _StencilRefMV: 40
|
||||
- _StencilWriteMask: 6
|
||||
- _StencilWriteMaskDepth: 8
|
||||
- _StencilWriteMaskDistortionVec: 4
|
||||
- _StencilWriteMaskGBuffer: 14
|
||||
- _StencilWriteMaskMV: 40
|
||||
- _SupportDecals: 1
|
||||
- _SurfaceType: 0
|
||||
- _TransparentBackfaceEnable: 0
|
||||
- _TransparentCullMode: 2
|
||||
- _TransparentDepthPostpassEnable: 0
|
||||
- _TransparentDepthPrepassEnable: 0
|
||||
- _TransparentSortPriority: 0
|
||||
- _TransparentWritingMotionVec: 0
|
||||
- _TransparentZWrite: 0
|
||||
- _UV_Tiling: 1
|
||||
- _UseAlphaClipping: 0
|
||||
- _UseInstantColor: 1
|
||||
- _UsePom: 0
|
||||
- _UseShadowThreshold: 0
|
||||
- _UseWorldAlign: 0
|
||||
- _WorldAlignTile: 512
|
||||
- _ZTestDepthEqualForOpaque: 3
|
||||
- _ZTestGBuffer: 3
|
||||
- _ZTestTransparent: 4
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _AlbedoTint: {r: 0.9150943, g: 0.9150943, b: 0.9150943, a: 0}
|
||||
- _ChangeInstantColor: {r: 0.6320754, g: 0.6320754, b: 0.6320754, a: 0}
|
||||
- _Dirt_Color: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _DoubleSidedConstants: {r: 1, g: 1, b: -1, a: 0}
|
||||
- _EdgeColor: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _EmissionColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _EmissiveColor: {r: 1, g: 0.68235296, b: 0.4431373, a: 0}
|
||||
- _PomOffset: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _SecondColorMultiply: {r: 1, g: 1, b: 1, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
--- !u!114 &3696197708043593277
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 12
|
||||
hdPluginSubTargetMaterialVersions:
|
||||
m_Keys: []
|
||||
m_Values:
|
||||
@@ -1,15 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 6c30552ed064a4247bef6303184fcb6b
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 330726
|
||||
packageName: Orbital Base Environment
|
||||
packageVersion: 1.0
|
||||
assetPath: Assets/BefourStudios/Art/Materials/M_Cable.mat
|
||||
uploadId: 782779
|
||||
@@ -1,193 +0,0 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: M_CableHub
|
||||
m_Shader: {fileID: -6465566751694194690, guid: bb2b9fd294686ac489b6c02ab0921e98,
|
||||
type: 3}
|
||||
m_ValidKeywords:
|
||||
- _ALPHATEST_ON
|
||||
- _DISABLE_SSR_TRANSPARENT
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 1
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: 2475
|
||||
stringTagMap:
|
||||
MotionVector: User
|
||||
RenderType: TransparentCutout
|
||||
disabledShaderPasses:
|
||||
- TransparentDepthPrepass
|
||||
- TransparentDepthPostpass
|
||||
- TransparentBackface
|
||||
- RayTracingPrepass
|
||||
- MOTIONVECTORS
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _AlphaClipping:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BaseTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000012667598805779862604, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MaskTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NormalTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000016173030621458232568, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ORMTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000011520688401912472070, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SecondTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _Texture2DAsset_50d8aa134ded4f3ba8216b2c6da2550a_Out_0:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000011191443335310782487, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _WorldAlignTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _A_Dirt: 0
|
||||
- _A_Edge: 0
|
||||
- _A_Mask: 0
|
||||
- _AddPrecomputedVelocity: 0
|
||||
- _AddSecondNormal: 0
|
||||
- _AlphaCutoffEnable: 1
|
||||
- _AlphaDstBlend: 0
|
||||
- _AlphaOpacity: 0.75
|
||||
- _AlphaSrcBlend: 1
|
||||
- _AlphaToMask: 0
|
||||
- _AlphaToMaskInspectorValue: 0
|
||||
- _AlphaTreshold: 0.45
|
||||
- _B_Dirt: 0
|
||||
- _B_Edge: 0
|
||||
- _B_Mask: 0
|
||||
- _BaseColorMultiply: 1
|
||||
- _BlendMode: 0
|
||||
- _ChangeInstantColor_1: 0
|
||||
- _ConservativeDepthOffsetEnable: 0
|
||||
- _CullMode: 2
|
||||
- _CullModeForward: 2
|
||||
- _DepthOffsetEnable: 0
|
||||
- _Dirt_Intensity: 0.5
|
||||
- _DoubleSidedEnable: 0
|
||||
- _DoubleSidedGIMode: 0
|
||||
- _DoubleSidedNormalMode: 2
|
||||
- _DstBlend: 0
|
||||
- _Edges_Intensity: 1
|
||||
- _Emissive: 1
|
||||
- _EmissiveIntensity: 1
|
||||
- _EnableBlendModePreserveSpecularLighting: 1
|
||||
- _EnableDirt: 0
|
||||
- _EnableEdge: 0
|
||||
- _EnableFogOnTransparent: 1
|
||||
- _G_Dirt: 0
|
||||
- _G_Edge: 0
|
||||
- _G_Mask: 0
|
||||
- _MaskAdjustment: 1
|
||||
- _MetallicIntensity: 0.75
|
||||
- _NormalIntensity: 1
|
||||
- _OpaqueCullMode: 2
|
||||
- _PomHeight: 1
|
||||
- _PomQuality: 32
|
||||
- _R_Dirt: 0
|
||||
- _R_Edge: 0
|
||||
- _R_Mask: 0
|
||||
- _RayTracing: 0
|
||||
- _ReceivesSSR: 1
|
||||
- _ReceivesSSRTransparent: 0
|
||||
- _RefractionModel: 0
|
||||
- _RenderQueueType: 1
|
||||
- _RequireSplitLighting: 0
|
||||
- _Saturation: 1
|
||||
- _SaturationWorldAlign: 1
|
||||
- _SecondNormalTile: 4.68
|
||||
- _SecondTextureColorMultiply: 1
|
||||
- _SmoothnessIntensity: 1.05
|
||||
- _SrcBlend: 1
|
||||
- _StencilRef: 0
|
||||
- _StencilRefDepth: 8
|
||||
- _StencilRefDistortionVec: 4
|
||||
- _StencilRefGBuffer: 10
|
||||
- _StencilRefMV: 40
|
||||
- _StencilWriteMask: 6
|
||||
- _StencilWriteMaskDepth: 8
|
||||
- _StencilWriteMaskDistortionVec: 4
|
||||
- _StencilWriteMaskGBuffer: 14
|
||||
- _StencilWriteMaskMV: 40
|
||||
- _SupportDecals: 1
|
||||
- _SurfaceType: 0
|
||||
- _TransparentBackfaceEnable: 0
|
||||
- _TransparentCullMode: 2
|
||||
- _TransparentDepthPostpassEnable: 0
|
||||
- _TransparentDepthPrepassEnable: 0
|
||||
- _TransparentSortPriority: 0
|
||||
- _TransparentWritingMotionVec: 0
|
||||
- _TransparentZWrite: 0
|
||||
- _UV_Tiling: 1
|
||||
- _UseAlphaClipping: 0
|
||||
- _UseInstantColor: 1
|
||||
- _UsePom: 0
|
||||
- _UseShadowThreshold: 0
|
||||
- _UseWorldAlign: 0
|
||||
- _WorldAlignTile: 512
|
||||
- _ZTestDepthEqualForOpaque: 3
|
||||
- _ZTestGBuffer: 3
|
||||
- _ZTestTransparent: 4
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _AlbedoTint: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _ChangeInstantColor: {r: 0.6320754, g: 0.6320754, b: 0.6320754, a: 0}
|
||||
- _Dirt_Color: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _DoubleSidedConstants: {r: 1, g: 1, b: -1, a: 0}
|
||||
- _EdgeColor: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _EmissionColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _EmissiveColor: {r: 1, g: 0.68235296, b: 0.4431373, a: 0}
|
||||
- _PomOffset: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _SecondColorMultiply: {r: 1, g: 1, b: 1, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
--- !u!114 &3696197708043593277
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 12
|
||||
hdPluginSubTargetMaterialVersions:
|
||||
m_Keys: []
|
||||
m_Values:
|
||||
@@ -1,15 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 2751a24235d9c604ebd0e8660f8c5c59
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 330726
|
||||
packageName: Orbital Base Environment
|
||||
packageVersion: 1.0
|
||||
assetPath: Assets/BefourStudios/Art/Materials/M_CableHub.mat
|
||||
uploadId: 782779
|
||||
@@ -1,186 +0,0 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: M_CableHubWhite
|
||||
m_Shader: {fileID: -6465566751694194690, guid: bb2b9fd294686ac489b6c02ab0921e98,
|
||||
type: 3}
|
||||
m_ValidKeywords:
|
||||
- _ALPHATEST_ON
|
||||
- _DISABLE_SSR_TRANSPARENT
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 1
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: 2475
|
||||
stringTagMap:
|
||||
MotionVector: User
|
||||
RenderType: TransparentCutout
|
||||
disabledShaderPasses:
|
||||
- TransparentDepthPrepass
|
||||
- TransparentDepthPostpass
|
||||
- TransparentBackface
|
||||
- RayTracingPrepass
|
||||
- MOTIONVECTORS
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _AlphaClipping:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BaseTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000012667598805779862604, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MaskTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NormalTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000016173030621458232568, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ORMTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000011520688401912472070, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SecondTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _WorldAlignTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _A_Dirt: 0
|
||||
- _A_Edge: 0
|
||||
- _A_Mask: 0
|
||||
- _AddPrecomputedVelocity: 0
|
||||
- _AlphaCutoffEnable: 1
|
||||
- _AlphaDstBlend: 0
|
||||
- _AlphaOpacity: 0.75
|
||||
- _AlphaSrcBlend: 1
|
||||
- _AlphaToMask: 0
|
||||
- _AlphaToMaskInspectorValue: 0
|
||||
- _AlphaTreshold: 0.45
|
||||
- _B_Dirt: 0
|
||||
- _B_Edge: 0
|
||||
- _B_Mask: 0
|
||||
- _BaseColorMultiply: 1.15
|
||||
- _BlendMode: 0
|
||||
- _ChangeInstantColor_1: 1
|
||||
- _ConservativeDepthOffsetEnable: 0
|
||||
- _CullMode: 2
|
||||
- _CullModeForward: 2
|
||||
- _DepthOffsetEnable: 0
|
||||
- _Dirt_Intensity: 0.5
|
||||
- _DoubleSidedEnable: 0
|
||||
- _DoubleSidedGIMode: 0
|
||||
- _DoubleSidedNormalMode: 2
|
||||
- _DstBlend: 0
|
||||
- _Edges_Intensity: 1
|
||||
- _Emissive: 1
|
||||
- _EmissiveIntensity: 1
|
||||
- _EnableBlendModePreserveSpecularLighting: 1
|
||||
- _EnableDirt: 0
|
||||
- _EnableEdge: 0
|
||||
- _EnableFogOnTransparent: 1
|
||||
- _G_Dirt: 0
|
||||
- _G_Edge: 0
|
||||
- _G_Mask: 0
|
||||
- _MaskAdjustment: 1
|
||||
- _MetallicIntensity: 0.75
|
||||
- _NormalIntensity: 1
|
||||
- _OpaqueCullMode: 2
|
||||
- _PomHeight: 1
|
||||
- _PomQuality: 32
|
||||
- _R_Dirt: 0
|
||||
- _R_Edge: 0
|
||||
- _R_Mask: 0
|
||||
- _RayTracing: 0
|
||||
- _ReceivesSSR: 1
|
||||
- _ReceivesSSRTransparent: 0
|
||||
- _RefractionModel: 0
|
||||
- _RenderQueueType: 1
|
||||
- _RequireSplitLighting: 0
|
||||
- _Saturation: 1
|
||||
- _SaturationWorldAlign: 1
|
||||
- _SecondTextureColorMultiply: 1
|
||||
- _SmoothnessIntensity: 1.05
|
||||
- _SrcBlend: 1
|
||||
- _StencilRef: 0
|
||||
- _StencilRefDepth: 8
|
||||
- _StencilRefDistortionVec: 4
|
||||
- _StencilRefGBuffer: 10
|
||||
- _StencilRefMV: 40
|
||||
- _StencilWriteMask: 6
|
||||
- _StencilWriteMaskDepth: 8
|
||||
- _StencilWriteMaskDistortionVec: 4
|
||||
- _StencilWriteMaskGBuffer: 14
|
||||
- _StencilWriteMaskMV: 40
|
||||
- _SupportDecals: 1
|
||||
- _SurfaceType: 0
|
||||
- _TransparentBackfaceEnable: 0
|
||||
- _TransparentCullMode: 2
|
||||
- _TransparentDepthPostpassEnable: 0
|
||||
- _TransparentDepthPrepassEnable: 0
|
||||
- _TransparentSortPriority: 0
|
||||
- _TransparentWritingMotionVec: 0
|
||||
- _TransparentZWrite: 0
|
||||
- _UV_Tiling: 1
|
||||
- _UseAlphaClipping: 0
|
||||
- _UseInstantColor: 1
|
||||
- _UsePom: 0
|
||||
- _UseShadowThreshold: 0
|
||||
- _UseWorldAlign: 0
|
||||
- _WorldAlignTile: 512
|
||||
- _ZTestDepthEqualForOpaque: 3
|
||||
- _ZTestGBuffer: 3
|
||||
- _ZTestTransparent: 4
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _AlbedoTint: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _ChangeInstantColor: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _Dirt_Color: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _DoubleSidedConstants: {r: 1, g: 1, b: -1, a: 0}
|
||||
- _EdgeColor: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _EmissionColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _EmissiveColor: {r: 1, g: 0.68235296, b: 0.4431373, a: 0}
|
||||
- _SecondColorMultiply: {r: 1, g: 1, b: 1, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
--- !u!114 &3696197708043593277
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 12
|
||||
hdPluginSubTargetMaterialVersions:
|
||||
m_Keys: []
|
||||
m_Values:
|
||||
@@ -1,15 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 085845074d8f7014caa7cec26ed726c8
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 330726
|
||||
packageName: Orbital Base Environment
|
||||
packageVersion: 1.0
|
||||
assetPath: Assets/BefourStudios/Art/Materials/M_CableHubWhite.mat
|
||||
uploadId: 782779
|
||||
@@ -1,199 +0,0 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: M_ChargingCoils
|
||||
m_Shader: {fileID: -6465566751694194690, guid: bb2b9fd294686ac489b6c02ab0921e98,
|
||||
type: 3}
|
||||
m_ValidKeywords:
|
||||
- _ALPHATEST_ON
|
||||
- _DISABLE_SSR_TRANSPARENT
|
||||
- _DOUBLESIDED_ON
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 1
|
||||
m_DoubleSidedGI: 1
|
||||
m_CustomRenderQueue: 2475
|
||||
stringTagMap:
|
||||
MotionVector: User
|
||||
RenderType: TransparentCutout
|
||||
disabledShaderPasses:
|
||||
- TransparentDepthPrepass
|
||||
- TransparentDepthPostpass
|
||||
- TransparentBackface
|
||||
- RayTracingPrepass
|
||||
- MOTIONVECTORS
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _AlphaClipping:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BaseTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000014475312978124263745, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MaskTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NormalTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000005172336505076169749, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ORMTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000007895467063125343200, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SecondNormalTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SecondTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _Texture2DAsset_50d8aa134ded4f3ba8216b2c6da2550a_Out_0:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000011191443335310782487, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _WorldAlignTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _A_Dirt: 0
|
||||
- _A_Edge: 0
|
||||
- _A_Mask: 0
|
||||
- _AddPrecomputedVelocity: 0
|
||||
- _AddSecondNormal: 0
|
||||
- _AlphaCutoffEnable: 1
|
||||
- _AlphaDstBlend: 0
|
||||
- _AlphaOpacity: 0.75
|
||||
- _AlphaSrcBlend: 1
|
||||
- _AlphaToMask: 0
|
||||
- _AlphaToMaskInspectorValue: 0
|
||||
- _AlphaTreshold: 0.45
|
||||
- _B_Dirt: 0
|
||||
- _B_Edge: 0
|
||||
- _B_Mask: 0
|
||||
- _BaseColorMultiply: 1
|
||||
- _BlendMode: 0
|
||||
- _ChangeInstantColor_1: 0
|
||||
- _ConservativeDepthOffsetEnable: 0
|
||||
- _CullMode: 0
|
||||
- _CullModeForward: 0
|
||||
- _DepthOffsetEnable: 0
|
||||
- _Dirt_Intensity: 0.5
|
||||
- _DoubleSidedEnable: 1
|
||||
- _DoubleSidedGIMode: 0
|
||||
- _DoubleSidedNormalMode: 2
|
||||
- _DstBlend: 0
|
||||
- _Edges_Intensity: 1
|
||||
- _Emissive: 0
|
||||
- _EmissiveIntensity: 1
|
||||
- _EnableBlendModePreserveSpecularLighting: 1
|
||||
- _EnableDirt: 0
|
||||
- _EnableEdge: 0
|
||||
- _EnableFogOnTransparent: 1
|
||||
- _G_Dirt: 0
|
||||
- _G_Edge: 0
|
||||
- _G_Mask: 0
|
||||
- _MaskAdjustment: 1
|
||||
- _MetallicIntensity: 1.5
|
||||
- _NormalIntensity: 1
|
||||
- _OpaqueCullMode: 2
|
||||
- _PomHeight: 0.89
|
||||
- _PomQuality: 32
|
||||
- _R_Dirt: 0
|
||||
- _R_Edge: 0
|
||||
- _R_Mask: 0
|
||||
- _RayTracing: 0
|
||||
- _ReceivesSSR: 1
|
||||
- _ReceivesSSRTransparent: 0
|
||||
- _RefractionModel: 0
|
||||
- _RenderQueueType: 1
|
||||
- _RequireSplitLighting: 0
|
||||
- _Saturation: 1
|
||||
- _SaturationWorldAlign: 1
|
||||
- _SecondNormalBlend: 1
|
||||
- _SecondNormalTile: 4.68
|
||||
- _SecondTextureColorMultiply: 1
|
||||
- _SmoothnessIntensity: 0.91
|
||||
- _SrcBlend: 1
|
||||
- _StencilRef: 0
|
||||
- _StencilRefDepth: 8
|
||||
- _StencilRefDistortionVec: 4
|
||||
- _StencilRefGBuffer: 10
|
||||
- _StencilRefMV: 40
|
||||
- _StencilWriteMask: 6
|
||||
- _StencilWriteMaskDepth: 8
|
||||
- _StencilWriteMaskDistortionVec: 4
|
||||
- _StencilWriteMaskGBuffer: 14
|
||||
- _StencilWriteMaskMV: 40
|
||||
- _SupportDecals: 1
|
||||
- _SurfaceType: 0
|
||||
- _TransparentBackfaceEnable: 0
|
||||
- _TransparentCullMode: 2
|
||||
- _TransparentDepthPostpassEnable: 0
|
||||
- _TransparentDepthPrepassEnable: 0
|
||||
- _TransparentSortPriority: 0
|
||||
- _TransparentWritingMotionVec: 0
|
||||
- _TransparentZWrite: 0
|
||||
- _UV_Tiling: 6
|
||||
- _UseAlphaClipping: 0
|
||||
- _UseInstantColor: 0
|
||||
- _UsePom: 1
|
||||
- _UseShadowThreshold: 0
|
||||
- _UseWorldAlign: 0
|
||||
- _WorldAlignTile: 512
|
||||
- _ZTestDepthEqualForOpaque: 3
|
||||
- _ZTestGBuffer: 3
|
||||
- _ZTestTransparent: 4
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _AlbedoTint: {r: 0.735849, g: 0.735849, b: 0.735849, a: 0}
|
||||
- _ChangeInstantColor: {r: 0.6792453, g: 0.6792453, b: 0.6792453, a: 0}
|
||||
- _Dirt_Color: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _DoubleSidedConstants: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _EdgeColor: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _EmissionColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _EmissiveColor: {r: 0.24313727, g: 1, b: 0.37647063, a: 0}
|
||||
- _PomOffset: {r: -0.3, g: 0.09, b: 0, a: 0}
|
||||
- _SecondColorMultiply: {r: 1, g: 1, b: 1, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
--- !u!114 &3696197708043593277
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 12
|
||||
hdPluginSubTargetMaterialVersions:
|
||||
m_Keys: []
|
||||
m_Values:
|
||||
@@ -1,15 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 9b29663d442a8f744854b60676e591d6
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 330726
|
||||
packageName: Orbital Base Environment
|
||||
packageVersion: 1.0
|
||||
assetPath: Assets/BefourStudios/Art/Materials/M_ChargingCoils.mat
|
||||
uploadId: 782779
|
||||
@@ -1,193 +0,0 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: M_ClimateUnit
|
||||
m_Shader: {fileID: -6465566751694194690, guid: bb2b9fd294686ac489b6c02ab0921e98,
|
||||
type: 3}
|
||||
m_ValidKeywords:
|
||||
- _ALPHATEST_ON
|
||||
- _DISABLE_SSR_TRANSPARENT
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 1
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: 2475
|
||||
stringTagMap:
|
||||
MotionVector: User
|
||||
RenderType: TransparentCutout
|
||||
disabledShaderPasses:
|
||||
- TransparentDepthPrepass
|
||||
- TransparentDepthPostpass
|
||||
- TransparentBackface
|
||||
- RayTracingPrepass
|
||||
- MOTIONVECTORS
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _AlphaClipping:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BaseTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000010422583929517515680, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MaskTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NormalTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000003305600124144669924, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ORMTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000009767288728423739210, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SecondTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _Texture2DAsset_50d8aa134ded4f3ba8216b2c6da2550a_Out_0:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000011191443335310782487, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _WorldAlignTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _A_Dirt: 0
|
||||
- _A_Edge: 0
|
||||
- _A_Mask: 0
|
||||
- _AddPrecomputedVelocity: 0
|
||||
- _AddSecondNormal: 0
|
||||
- _AlphaCutoffEnable: 1
|
||||
- _AlphaDstBlend: 0
|
||||
- _AlphaOpacity: 0.75
|
||||
- _AlphaSrcBlend: 1
|
||||
- _AlphaToMask: 0
|
||||
- _AlphaToMaskInspectorValue: 0
|
||||
- _AlphaTreshold: 0.45
|
||||
- _B_Dirt: 0
|
||||
- _B_Edge: 0
|
||||
- _B_Mask: 0
|
||||
- _BaseColorMultiply: 1.15
|
||||
- _BlendMode: 0
|
||||
- _ChangeInstantColor_1: 1
|
||||
- _ConservativeDepthOffsetEnable: 0
|
||||
- _CullMode: 2
|
||||
- _CullModeForward: 2
|
||||
- _DepthOffsetEnable: 0
|
||||
- _Dirt_Intensity: 0.5
|
||||
- _DoubleSidedEnable: 0
|
||||
- _DoubleSidedGIMode: 0
|
||||
- _DoubleSidedNormalMode: 2
|
||||
- _DstBlend: 0
|
||||
- _Edges_Intensity: 1
|
||||
- _Emissive: 1
|
||||
- _EmissiveIntensity: 1
|
||||
- _EnableBlendModePreserveSpecularLighting: 1
|
||||
- _EnableDirt: 0
|
||||
- _EnableEdge: 0
|
||||
- _EnableFogOnTransparent: 1
|
||||
- _G_Dirt: 0
|
||||
- _G_Edge: 0
|
||||
- _G_Mask: 0
|
||||
- _MaskAdjustment: 1
|
||||
- _MetallicIntensity: 0.75
|
||||
- _NormalIntensity: 1
|
||||
- _OpaqueCullMode: 2
|
||||
- _PomHeight: 1
|
||||
- _PomQuality: 32
|
||||
- _R_Dirt: 0
|
||||
- _R_Edge: 0
|
||||
- _R_Mask: 0
|
||||
- _RayTracing: 0
|
||||
- _ReceivesSSR: 1
|
||||
- _ReceivesSSRTransparent: 0
|
||||
- _RefractionModel: 0
|
||||
- _RenderQueueType: 1
|
||||
- _RequireSplitLighting: 0
|
||||
- _Saturation: 1
|
||||
- _SaturationWorldAlign: 1
|
||||
- _SecondNormalTile: 4.68
|
||||
- _SecondTextureColorMultiply: 1
|
||||
- _SmoothnessIntensity: 1.05
|
||||
- _SrcBlend: 1
|
||||
- _StencilRef: 0
|
||||
- _StencilRefDepth: 8
|
||||
- _StencilRefDistortionVec: 4
|
||||
- _StencilRefGBuffer: 10
|
||||
- _StencilRefMV: 40
|
||||
- _StencilWriteMask: 6
|
||||
- _StencilWriteMaskDepth: 8
|
||||
- _StencilWriteMaskDistortionVec: 4
|
||||
- _StencilWriteMaskGBuffer: 14
|
||||
- _StencilWriteMaskMV: 40
|
||||
- _SupportDecals: 1
|
||||
- _SurfaceType: 0
|
||||
- _TransparentBackfaceEnable: 0
|
||||
- _TransparentCullMode: 2
|
||||
- _TransparentDepthPostpassEnable: 0
|
||||
- _TransparentDepthPrepassEnable: 0
|
||||
- _TransparentSortPriority: 0
|
||||
- _TransparentWritingMotionVec: 0
|
||||
- _TransparentZWrite: 0
|
||||
- _UV_Tiling: 1
|
||||
- _UseAlphaClipping: 0
|
||||
- _UseInstantColor: 1
|
||||
- _UsePom: 0
|
||||
- _UseShadowThreshold: 0
|
||||
- _UseWorldAlign: 0
|
||||
- _WorldAlignTile: 512
|
||||
- _ZTestDepthEqualForOpaque: 3
|
||||
- _ZTestGBuffer: 3
|
||||
- _ZTestTransparent: 4
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _AlbedoTint: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _ChangeInstantColor: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _Dirt_Color: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _DoubleSidedConstants: {r: 1, g: 1, b: -1, a: 0}
|
||||
- _EdgeColor: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _EmissionColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _EmissiveColor: {r: 0.2392157, g: 1, b: 0.37647063, a: 0}
|
||||
- _PomOffset: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _SecondColorMultiply: {r: 1, g: 1, b: 1, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
--- !u!114 &3696197708043593277
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 12
|
||||
hdPluginSubTargetMaterialVersions:
|
||||
m_Keys: []
|
||||
m_Values:
|
||||
@@ -1,15 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 3e2359276446ca2448df64bf8e06e23c
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 330726
|
||||
packageName: Orbital Base Environment
|
||||
packageVersion: 1.0
|
||||
assetPath: Assets/BefourStudios/Art/Materials/M_ClimateUnit.mat
|
||||
uploadId: 782779
|
||||
@@ -1,186 +0,0 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: M_ClimateUnitCooler
|
||||
m_Shader: {fileID: -6465566751694194690, guid: bb2b9fd294686ac489b6c02ab0921e98,
|
||||
type: 3}
|
||||
m_ValidKeywords:
|
||||
- _ALPHATEST_ON
|
||||
- _DISABLE_SSR_TRANSPARENT
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 1
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: 2475
|
||||
stringTagMap:
|
||||
MotionVector: User
|
||||
RenderType: TransparentCutout
|
||||
disabledShaderPasses:
|
||||
- TransparentDepthPrepass
|
||||
- TransparentDepthPostpass
|
||||
- TransparentBackface
|
||||
- RayTracingPrepass
|
||||
- MOTIONVECTORS
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _AlphaClipping:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BaseTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000010422583929517515680, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MaskTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NormalTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000003305600124144669924, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ORMTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000009767288728423739210, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SecondTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _WorldAlignTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _A_Dirt: 0
|
||||
- _A_Edge: 0
|
||||
- _A_Mask: 0
|
||||
- _AddPrecomputedVelocity: 0
|
||||
- _AlphaCutoffEnable: 1
|
||||
- _AlphaDstBlend: 0
|
||||
- _AlphaOpacity: 0.75
|
||||
- _AlphaSrcBlend: 1
|
||||
- _AlphaToMask: 0
|
||||
- _AlphaToMaskInspectorValue: 0
|
||||
- _AlphaTreshold: 0.45
|
||||
- _B_Dirt: 0
|
||||
- _B_Edge: 0
|
||||
- _B_Mask: 0
|
||||
- _BaseColorMultiply: 1.15
|
||||
- _BlendMode: 0
|
||||
- _ChangeInstantColor_1: 0
|
||||
- _ConservativeDepthOffsetEnable: 0
|
||||
- _CullMode: 2
|
||||
- _CullModeForward: 2
|
||||
- _DepthOffsetEnable: 0
|
||||
- _Dirt_Intensity: 0.5
|
||||
- _DoubleSidedEnable: 0
|
||||
- _DoubleSidedGIMode: 0
|
||||
- _DoubleSidedNormalMode: 2
|
||||
- _DstBlend: 0
|
||||
- _Edges_Intensity: 1
|
||||
- _Emissive: 1
|
||||
- _EmissiveIntensity: 1
|
||||
- _EnableBlendModePreserveSpecularLighting: 1
|
||||
- _EnableDirt: 0
|
||||
- _EnableEdge: 0
|
||||
- _EnableFogOnTransparent: 1
|
||||
- _G_Dirt: 0
|
||||
- _G_Edge: 0
|
||||
- _G_Mask: 0
|
||||
- _MaskAdjustment: 1
|
||||
- _MetallicIntensity: 0.75
|
||||
- _NormalIntensity: 1
|
||||
- _OpaqueCullMode: 2
|
||||
- _PomHeight: 1
|
||||
- _PomQuality: 32
|
||||
- _R_Dirt: 0
|
||||
- _R_Edge: 0
|
||||
- _R_Mask: 0
|
||||
- _RayTracing: 0
|
||||
- _ReceivesSSR: 1
|
||||
- _ReceivesSSRTransparent: 0
|
||||
- _RefractionModel: 0
|
||||
- _RenderQueueType: 1
|
||||
- _RequireSplitLighting: 0
|
||||
- _Saturation: 1
|
||||
- _SaturationWorldAlign: 1
|
||||
- _SecondTextureColorMultiply: 1
|
||||
- _SmoothnessIntensity: 1.05
|
||||
- _SrcBlend: 1
|
||||
- _StencilRef: 0
|
||||
- _StencilRefDepth: 8
|
||||
- _StencilRefDistortionVec: 4
|
||||
- _StencilRefGBuffer: 10
|
||||
- _StencilRefMV: 40
|
||||
- _StencilWriteMask: 6
|
||||
- _StencilWriteMaskDepth: 8
|
||||
- _StencilWriteMaskDistortionVec: 4
|
||||
- _StencilWriteMaskGBuffer: 14
|
||||
- _StencilWriteMaskMV: 40
|
||||
- _SupportDecals: 1
|
||||
- _SurfaceType: 0
|
||||
- _TransparentBackfaceEnable: 0
|
||||
- _TransparentCullMode: 2
|
||||
- _TransparentDepthPostpassEnable: 0
|
||||
- _TransparentDepthPrepassEnable: 0
|
||||
- _TransparentSortPriority: 0
|
||||
- _TransparentWritingMotionVec: 0
|
||||
- _TransparentZWrite: 0
|
||||
- _UV_Tiling: 1
|
||||
- _UseAlphaClipping: 0
|
||||
- _UseInstantColor: 1
|
||||
- _UsePom: 0
|
||||
- _UseShadowThreshold: 0
|
||||
- _UseWorldAlign: 0
|
||||
- _WorldAlignTile: 512
|
||||
- _ZTestDepthEqualForOpaque: 3
|
||||
- _ZTestGBuffer: 3
|
||||
- _ZTestTransparent: 4
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _AlbedoTint: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _ChangeInstantColor: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _Dirt_Color: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _DoubleSidedConstants: {r: 1, g: 1, b: -1, a: 0}
|
||||
- _EdgeColor: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _EmissionColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _EmissiveColor: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _SecondColorMultiply: {r: 1, g: 1, b: 1, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
--- !u!114 &3696197708043593277
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 12
|
||||
hdPluginSubTargetMaterialVersions:
|
||||
m_Keys: []
|
||||
m_Values:
|
||||
@@ -1,15 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 4caa3a28d84ea5840b9685d202aa2b76
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 330726
|
||||
packageName: Orbital Base Environment
|
||||
packageVersion: 1.0
|
||||
assetPath: Assets/BefourStudios/Art/Materials/M_ClimateUnitCooler.mat
|
||||
uploadId: 782779
|
||||
@@ -1,186 +0,0 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: M_ClimateUnitCoolerDisabled
|
||||
m_Shader: {fileID: -6465566751694194690, guid: bb2b9fd294686ac489b6c02ab0921e98,
|
||||
type: 3}
|
||||
m_ValidKeywords:
|
||||
- _ALPHATEST_ON
|
||||
- _DISABLE_SSR_TRANSPARENT
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 1
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: 2475
|
||||
stringTagMap:
|
||||
MotionVector: User
|
||||
RenderType: TransparentCutout
|
||||
disabledShaderPasses:
|
||||
- TransparentDepthPrepass
|
||||
- TransparentDepthPostpass
|
||||
- TransparentBackface
|
||||
- RayTracingPrepass
|
||||
- MOTIONVECTORS
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _AlphaClipping:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BaseTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000010422583929517515680, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MaskTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NormalTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000003305600124144669924, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ORMTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000009767288728423739210, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SecondTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _WorldAlignTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _A_Dirt: 0
|
||||
- _A_Edge: 0
|
||||
- _A_Mask: 0
|
||||
- _AddPrecomputedVelocity: 0
|
||||
- _AlphaCutoffEnable: 1
|
||||
- _AlphaDstBlend: 0
|
||||
- _AlphaOpacity: 0.75
|
||||
- _AlphaSrcBlend: 1
|
||||
- _AlphaToMask: 0
|
||||
- _AlphaToMaskInspectorValue: 0
|
||||
- _AlphaTreshold: 0.45
|
||||
- _B_Dirt: 0
|
||||
- _B_Edge: 0
|
||||
- _B_Mask: 0
|
||||
- _BaseColorMultiply: 1.15
|
||||
- _BlendMode: 0
|
||||
- _ChangeInstantColor_1: 0
|
||||
- _ConservativeDepthOffsetEnable: 0
|
||||
- _CullMode: 2
|
||||
- _CullModeForward: 2
|
||||
- _DepthOffsetEnable: 0
|
||||
- _Dirt_Intensity: 0.5
|
||||
- _DoubleSidedEnable: 0
|
||||
- _DoubleSidedGIMode: 0
|
||||
- _DoubleSidedNormalMode: 2
|
||||
- _DstBlend: 0
|
||||
- _Edges_Intensity: 1
|
||||
- _Emissive: 0
|
||||
- _EmissiveIntensity: 1
|
||||
- _EnableBlendModePreserveSpecularLighting: 1
|
||||
- _EnableDirt: 0
|
||||
- _EnableEdge: 0
|
||||
- _EnableFogOnTransparent: 1
|
||||
- _G_Dirt: 0
|
||||
- _G_Edge: 0
|
||||
- _G_Mask: 0
|
||||
- _MaskAdjustment: 1
|
||||
- _MetallicIntensity: 0.75
|
||||
- _NormalIntensity: 1
|
||||
- _OpaqueCullMode: 2
|
||||
- _PomHeight: 1
|
||||
- _PomQuality: 32
|
||||
- _R_Dirt: 0
|
||||
- _R_Edge: 0
|
||||
- _R_Mask: 0
|
||||
- _RayTracing: 0
|
||||
- _ReceivesSSR: 1
|
||||
- _ReceivesSSRTransparent: 0
|
||||
- _RefractionModel: 0
|
||||
- _RenderQueueType: 1
|
||||
- _RequireSplitLighting: 0
|
||||
- _Saturation: 1
|
||||
- _SaturationWorldAlign: 1
|
||||
- _SecondTextureColorMultiply: 1
|
||||
- _SmoothnessIntensity: 1.05
|
||||
- _SrcBlend: 1
|
||||
- _StencilRef: 0
|
||||
- _StencilRefDepth: 8
|
||||
- _StencilRefDistortionVec: 4
|
||||
- _StencilRefGBuffer: 10
|
||||
- _StencilRefMV: 40
|
||||
- _StencilWriteMask: 6
|
||||
- _StencilWriteMaskDepth: 8
|
||||
- _StencilWriteMaskDistortionVec: 4
|
||||
- _StencilWriteMaskGBuffer: 14
|
||||
- _StencilWriteMaskMV: 40
|
||||
- _SupportDecals: 1
|
||||
- _SurfaceType: 0
|
||||
- _TransparentBackfaceEnable: 0
|
||||
- _TransparentCullMode: 2
|
||||
- _TransparentDepthPostpassEnable: 0
|
||||
- _TransparentDepthPrepassEnable: 0
|
||||
- _TransparentSortPriority: 0
|
||||
- _TransparentWritingMotionVec: 0
|
||||
- _TransparentZWrite: 0
|
||||
- _UV_Tiling: 1
|
||||
- _UseAlphaClipping: 0
|
||||
- _UseInstantColor: 1
|
||||
- _UsePom: 0
|
||||
- _UseShadowThreshold: 0
|
||||
- _UseWorldAlign: 0
|
||||
- _WorldAlignTile: 512
|
||||
- _ZTestDepthEqualForOpaque: 3
|
||||
- _ZTestGBuffer: 3
|
||||
- _ZTestTransparent: 4
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _AlbedoTint: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _ChangeInstantColor: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _Dirt_Color: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _DoubleSidedConstants: {r: 1, g: 1, b: -1, a: 0}
|
||||
- _EdgeColor: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _EmissionColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _EmissiveColor: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _SecondColorMultiply: {r: 1, g: 1, b: 1, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
--- !u!114 &3696197708043593277
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 12
|
||||
hdPluginSubTargetMaterialVersions:
|
||||
m_Keys: []
|
||||
m_Values:
|
||||
@@ -1,15 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: ca06b42444bfca449af7872383dd73f5
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 330726
|
||||
packageName: Orbital Base Environment
|
||||
packageVersion: 1.0
|
||||
assetPath: Assets/BefourStudios/Art/Materials/M_ClimateUnitCoolerDisabled.mat
|
||||
uploadId: 782779
|
||||
@@ -1,186 +0,0 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: M_ClimateUnitDisabled
|
||||
m_Shader: {fileID: -6465566751694194690, guid: bb2b9fd294686ac489b6c02ab0921e98,
|
||||
type: 3}
|
||||
m_ValidKeywords:
|
||||
- _ALPHATEST_ON
|
||||
- _DISABLE_SSR_TRANSPARENT
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 1
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: 2475
|
||||
stringTagMap:
|
||||
MotionVector: User
|
||||
RenderType: TransparentCutout
|
||||
disabledShaderPasses:
|
||||
- TransparentDepthPrepass
|
||||
- TransparentDepthPostpass
|
||||
- TransparentBackface
|
||||
- RayTracingPrepass
|
||||
- MOTIONVECTORS
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _AlphaClipping:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BaseTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000010422583929517515680, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MaskTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NormalTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000003305600124144669924, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ORMTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000009767288728423739210, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SecondTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _WorldAlignTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _A_Dirt: 0
|
||||
- _A_Edge: 0
|
||||
- _A_Mask: 0
|
||||
- _AddPrecomputedVelocity: 0
|
||||
- _AlphaCutoffEnable: 1
|
||||
- _AlphaDstBlend: 0
|
||||
- _AlphaOpacity: 0.75
|
||||
- _AlphaSrcBlend: 1
|
||||
- _AlphaToMask: 0
|
||||
- _AlphaToMaskInspectorValue: 0
|
||||
- _AlphaTreshold: 0.45
|
||||
- _B_Dirt: 0
|
||||
- _B_Edge: 0
|
||||
- _B_Mask: 0
|
||||
- _BaseColorMultiply: 1.15
|
||||
- _BlendMode: 0
|
||||
- _ChangeInstantColor_1: 0
|
||||
- _ConservativeDepthOffsetEnable: 0
|
||||
- _CullMode: 2
|
||||
- _CullModeForward: 2
|
||||
- _DepthOffsetEnable: 0
|
||||
- _Dirt_Intensity: 0.5
|
||||
- _DoubleSidedEnable: 0
|
||||
- _DoubleSidedGIMode: 0
|
||||
- _DoubleSidedNormalMode: 2
|
||||
- _DstBlend: 0
|
||||
- _Edges_Intensity: 1
|
||||
- _Emissive: 0
|
||||
- _EmissiveIntensity: 1
|
||||
- _EnableBlendModePreserveSpecularLighting: 1
|
||||
- _EnableDirt: 0
|
||||
- _EnableEdge: 0
|
||||
- _EnableFogOnTransparent: 1
|
||||
- _G_Dirt: 0
|
||||
- _G_Edge: 0
|
||||
- _G_Mask: 0
|
||||
- _MaskAdjustment: 1
|
||||
- _MetallicIntensity: 0.75
|
||||
- _NormalIntensity: 1
|
||||
- _OpaqueCullMode: 2
|
||||
- _PomHeight: 1
|
||||
- _PomQuality: 32
|
||||
- _R_Dirt: 0
|
||||
- _R_Edge: 0
|
||||
- _R_Mask: 0
|
||||
- _RayTracing: 0
|
||||
- _ReceivesSSR: 1
|
||||
- _ReceivesSSRTransparent: 0
|
||||
- _RefractionModel: 0
|
||||
- _RenderQueueType: 1
|
||||
- _RequireSplitLighting: 0
|
||||
- _Saturation: 1
|
||||
- _SaturationWorldAlign: 1
|
||||
- _SecondTextureColorMultiply: 1
|
||||
- _SmoothnessIntensity: 1.05
|
||||
- _SrcBlend: 1
|
||||
- _StencilRef: 0
|
||||
- _StencilRefDepth: 8
|
||||
- _StencilRefDistortionVec: 4
|
||||
- _StencilRefGBuffer: 10
|
||||
- _StencilRefMV: 40
|
||||
- _StencilWriteMask: 6
|
||||
- _StencilWriteMaskDepth: 8
|
||||
- _StencilWriteMaskDistortionVec: 4
|
||||
- _StencilWriteMaskGBuffer: 14
|
||||
- _StencilWriteMaskMV: 40
|
||||
- _SupportDecals: 1
|
||||
- _SurfaceType: 0
|
||||
- _TransparentBackfaceEnable: 0
|
||||
- _TransparentCullMode: 2
|
||||
- _TransparentDepthPostpassEnable: 0
|
||||
- _TransparentDepthPrepassEnable: 0
|
||||
- _TransparentSortPriority: 0
|
||||
- _TransparentWritingMotionVec: 0
|
||||
- _TransparentZWrite: 0
|
||||
- _UV_Tiling: 1
|
||||
- _UseAlphaClipping: 0
|
||||
- _UseInstantColor: 1
|
||||
- _UsePom: 0
|
||||
- _UseShadowThreshold: 0
|
||||
- _UseWorldAlign: 0
|
||||
- _WorldAlignTile: 512
|
||||
- _ZTestDepthEqualForOpaque: 3
|
||||
- _ZTestGBuffer: 3
|
||||
- _ZTestTransparent: 4
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _AlbedoTint: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _ChangeInstantColor: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _Dirt_Color: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _DoubleSidedConstants: {r: 1, g: 1, b: -1, a: 0}
|
||||
- _EdgeColor: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _EmissionColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _EmissiveColor: {r: 0.2392157, g: 1, b: 0.37647063, a: 0}
|
||||
- _SecondColorMultiply: {r: 1, g: 1, b: 1, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
--- !u!114 &3696197708043593277
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 12
|
||||
hdPluginSubTargetMaterialVersions:
|
||||
m_Keys: []
|
||||
m_Values:
|
||||
@@ -1,15 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 3f529f6a5f2d3f948b550291340f11a8
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 330726
|
||||
packageName: Orbital Base Environment
|
||||
packageVersion: 1.0
|
||||
assetPath: Assets/BefourStudios/Art/Materials/M_ClimateUnitDisabled.mat
|
||||
uploadId: 782779
|
||||
@@ -1,198 +0,0 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: M_ContainerBase
|
||||
m_Shader: {fileID: -6465566751694194690, guid: bb2b9fd294686ac489b6c02ab0921e98,
|
||||
type: 3}
|
||||
m_ValidKeywords:
|
||||
- _ALPHATEST_ON
|
||||
- _DISABLE_SSR_TRANSPARENT
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 1
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: 2475
|
||||
stringTagMap:
|
||||
MotionVector: User
|
||||
RenderType: TransparentCutout
|
||||
disabledShaderPasses:
|
||||
- TransparentDepthPrepass
|
||||
- TransparentDepthPostpass
|
||||
- TransparentBackface
|
||||
- RayTracingPrepass
|
||||
- MOTIONVECTORS
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _AlphaClipping:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BaseTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000017649536101598047547, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MaskTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NormalTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000008154598277614166159, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ORMTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000011779946553625583761, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SecondNormalTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SecondTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _Texture2DAsset_50d8aa134ded4f3ba8216b2c6da2550a_Out_0:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000011191443335310782487, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _WorldAlignTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _A_Dirt: 0
|
||||
- _A_Edge: 0
|
||||
- _A_Mask: 0
|
||||
- _AddPrecomputedVelocity: 0
|
||||
- _AddSecondNormal: 0
|
||||
- _AlphaCutoffEnable: 1
|
||||
- _AlphaDstBlend: 0
|
||||
- _AlphaOpacity: 0.75
|
||||
- _AlphaSrcBlend: 1
|
||||
- _AlphaToMask: 0
|
||||
- _AlphaToMaskInspectorValue: 0
|
||||
- _AlphaTreshold: 0.45
|
||||
- _B_Dirt: 0
|
||||
- _B_Edge: 0
|
||||
- _B_Mask: 0
|
||||
- _BaseColorMultiply: 1.15
|
||||
- _BlendMode: 0
|
||||
- _ChangeInstantColor_1: 0
|
||||
- _ConservativeDepthOffsetEnable: 0
|
||||
- _CullMode: 2
|
||||
- _CullModeForward: 2
|
||||
- _DepthOffsetEnable: 0
|
||||
- _Dirt_Intensity: 0.5
|
||||
- _DoubleSidedEnable: 0
|
||||
- _DoubleSidedGIMode: 0
|
||||
- _DoubleSidedNormalMode: 2
|
||||
- _DstBlend: 0
|
||||
- _Edges_Intensity: 1
|
||||
- _Emissive: 0
|
||||
- _EmissiveIntensity: 1
|
||||
- _EnableBlendModePreserveSpecularLighting: 1
|
||||
- _EnableDirt: 0
|
||||
- _EnableEdge: 0
|
||||
- _EnableFogOnTransparent: 1
|
||||
- _G_Dirt: 0
|
||||
- _G_Edge: 0
|
||||
- _G_Mask: 0
|
||||
- _MaskAdjustment: 1
|
||||
- _MetallicIntensity: 0.82
|
||||
- _NormalIntensity: 1
|
||||
- _OpaqueCullMode: 2
|
||||
- _PomHeight: 1
|
||||
- _PomQuality: 32
|
||||
- _R_Dirt: 0
|
||||
- _R_Edge: 0
|
||||
- _R_Mask: 0
|
||||
- _RayTracing: 0
|
||||
- _ReceivesSSR: 1
|
||||
- _ReceivesSSRTransparent: 0
|
||||
- _RefractionModel: 0
|
||||
- _RenderQueueType: 1
|
||||
- _RequireSplitLighting: 0
|
||||
- _Saturation: 1
|
||||
- _SaturationWorldAlign: 1
|
||||
- _SecondNormalBlend: 1
|
||||
- _SecondNormalTile: 4.68
|
||||
- _SecondTextureColorMultiply: 1
|
||||
- _SmoothnessIntensity: 1.05
|
||||
- _SrcBlend: 1
|
||||
- _StencilRef: 0
|
||||
- _StencilRefDepth: 8
|
||||
- _StencilRefDistortionVec: 4
|
||||
- _StencilRefGBuffer: 10
|
||||
- _StencilRefMV: 40
|
||||
- _StencilWriteMask: 6
|
||||
- _StencilWriteMaskDepth: 8
|
||||
- _StencilWriteMaskDistortionVec: 4
|
||||
- _StencilWriteMaskGBuffer: 14
|
||||
- _StencilWriteMaskMV: 40
|
||||
- _SupportDecals: 1
|
||||
- _SurfaceType: 0
|
||||
- _TransparentBackfaceEnable: 0
|
||||
- _TransparentCullMode: 2
|
||||
- _TransparentDepthPostpassEnable: 0
|
||||
- _TransparentDepthPrepassEnable: 0
|
||||
- _TransparentSortPriority: 0
|
||||
- _TransparentWritingMotionVec: 0
|
||||
- _TransparentZWrite: 0
|
||||
- _UV_Tiling: 1
|
||||
- _UseAlphaClipping: 0
|
||||
- _UseInstantColor: 1
|
||||
- _UsePom: 0
|
||||
- _UseShadowThreshold: 0
|
||||
- _UseWorldAlign: 0
|
||||
- _WorldAlignTile: 512
|
||||
- _ZTestDepthEqualForOpaque: 3
|
||||
- _ZTestGBuffer: 3
|
||||
- _ZTestTransparent: 4
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _AlbedoTint: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _ChangeInstantColor: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _Dirt_Color: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _DoubleSidedConstants: {r: 1, g: 1, b: -1, a: 0}
|
||||
- _EdgeColor: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _EmissionColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _EmissiveColor: {r: 0.2392157, g: 1, b: 0.37647063, a: 0}
|
||||
- _PomOffset: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _SecondColorMultiply: {r: 1, g: 1, b: 1, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
--- !u!114 &3696197708043593277
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 12
|
||||
hdPluginSubTargetMaterialVersions:
|
||||
m_Keys: []
|
||||
m_Values:
|
||||
@@ -1,15 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: f2342f955fd281c4e87942b77f99a330
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 330726
|
||||
packageName: Orbital Base Environment
|
||||
packageVersion: 1.0
|
||||
assetPath: Assets/BefourStudios/Art/Materials/M_ContainerBase.mat
|
||||
uploadId: 782779
|
||||
@@ -1,198 +0,0 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: M_ContainerParts
|
||||
m_Shader: {fileID: -6465566751694194690, guid: bb2b9fd294686ac489b6c02ab0921e98,
|
||||
type: 3}
|
||||
m_ValidKeywords:
|
||||
- _ALPHATEST_ON
|
||||
- _DISABLE_SSR_TRANSPARENT
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 1
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: 2475
|
||||
stringTagMap:
|
||||
MotionVector: User
|
||||
RenderType: TransparentCutout
|
||||
disabledShaderPasses:
|
||||
- TransparentDepthPrepass
|
||||
- TransparentDepthPostpass
|
||||
- TransparentBackface
|
||||
- RayTracingPrepass
|
||||
- MOTIONVECTORS
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _AlphaClipping:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BaseTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000001349730743127845730, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MaskTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NormalTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000010844668567111727118, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ORMTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000009763401398956027144, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SecondNormalTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SecondTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _Texture2DAsset_50d8aa134ded4f3ba8216b2c6da2550a_Out_0:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000011191443335310782487, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _WorldAlignTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _A_Dirt: 0
|
||||
- _A_Edge: 0
|
||||
- _A_Mask: 0
|
||||
- _AddPrecomputedVelocity: 0
|
||||
- _AddSecondNormal: 0
|
||||
- _AlphaCutoffEnable: 1
|
||||
- _AlphaDstBlend: 0
|
||||
- _AlphaOpacity: 0.75
|
||||
- _AlphaSrcBlend: 1
|
||||
- _AlphaToMask: 0
|
||||
- _AlphaToMaskInspectorValue: 0
|
||||
- _AlphaTreshold: 0.45
|
||||
- _B_Dirt: 0
|
||||
- _B_Edge: 0
|
||||
- _B_Mask: 0
|
||||
- _BaseColorMultiply: 0.76
|
||||
- _BlendMode: 0
|
||||
- _ChangeInstantColor_1: 0
|
||||
- _ConservativeDepthOffsetEnable: 0
|
||||
- _CullMode: 2
|
||||
- _CullModeForward: 2
|
||||
- _DepthOffsetEnable: 0
|
||||
- _Dirt_Intensity: 0.5
|
||||
- _DoubleSidedEnable: 0
|
||||
- _DoubleSidedGIMode: 0
|
||||
- _DoubleSidedNormalMode: 2
|
||||
- _DstBlend: 0
|
||||
- _Edges_Intensity: 1
|
||||
- _Emissive: 1
|
||||
- _EmissiveIntensity: 1
|
||||
- _EnableBlendModePreserveSpecularLighting: 1
|
||||
- _EnableDirt: 0
|
||||
- _EnableEdge: 0
|
||||
- _EnableFogOnTransparent: 1
|
||||
- _G_Dirt: 0
|
||||
- _G_Edge: 0
|
||||
- _G_Mask: 0
|
||||
- _MaskAdjustment: 1
|
||||
- _MetallicIntensity: 0.75
|
||||
- _NormalIntensity: 1
|
||||
- _OpaqueCullMode: 2
|
||||
- _PomHeight: 1
|
||||
- _PomQuality: 32
|
||||
- _R_Dirt: 0
|
||||
- _R_Edge: 0
|
||||
- _R_Mask: 0
|
||||
- _RayTracing: 0
|
||||
- _ReceivesSSR: 1
|
||||
- _ReceivesSSRTransparent: 0
|
||||
- _RefractionModel: 0
|
||||
- _RenderQueueType: 1
|
||||
- _RequireSplitLighting: 0
|
||||
- _Saturation: 1
|
||||
- _SaturationWorldAlign: 1
|
||||
- _SecondNormalBlend: 1
|
||||
- _SecondNormalTile: 4.68
|
||||
- _SecondTextureColorMultiply: 1
|
||||
- _SmoothnessIntensity: 1.05
|
||||
- _SrcBlend: 1
|
||||
- _StencilRef: 0
|
||||
- _StencilRefDepth: 8
|
||||
- _StencilRefDistortionVec: 4
|
||||
- _StencilRefGBuffer: 10
|
||||
- _StencilRefMV: 40
|
||||
- _StencilWriteMask: 6
|
||||
- _StencilWriteMaskDepth: 8
|
||||
- _StencilWriteMaskDistortionVec: 4
|
||||
- _StencilWriteMaskGBuffer: 14
|
||||
- _StencilWriteMaskMV: 40
|
||||
- _SupportDecals: 1
|
||||
- _SurfaceType: 0
|
||||
- _TransparentBackfaceEnable: 0
|
||||
- _TransparentCullMode: 2
|
||||
- _TransparentDepthPostpassEnable: 0
|
||||
- _TransparentDepthPrepassEnable: 0
|
||||
- _TransparentSortPriority: 0
|
||||
- _TransparentWritingMotionVec: 0
|
||||
- _TransparentZWrite: 0
|
||||
- _UV_Tiling: 1
|
||||
- _UseAlphaClipping: 0
|
||||
- _UseInstantColor: 1
|
||||
- _UsePom: 0
|
||||
- _UseShadowThreshold: 0
|
||||
- _UseWorldAlign: 0
|
||||
- _WorldAlignTile: 512
|
||||
- _ZTestDepthEqualForOpaque: 3
|
||||
- _ZTestGBuffer: 3
|
||||
- _ZTestTransparent: 4
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _AlbedoTint: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _ChangeInstantColor: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _Dirt_Color: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _DoubleSidedConstants: {r: 1, g: 1, b: -1, a: 0}
|
||||
- _EdgeColor: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _EmissionColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _EmissiveColor: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _PomOffset: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _SecondColorMultiply: {r: 1, g: 1, b: 1, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
--- !u!114 &3696197708043593277
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 12
|
||||
hdPluginSubTargetMaterialVersions:
|
||||
m_Keys: []
|
||||
m_Values:
|
||||
@@ -1,15 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 1738cddb51069794a962a4831efd4575
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 330726
|
||||
packageName: Orbital Base Environment
|
||||
packageVersion: 1.0
|
||||
assetPath: Assets/BefourStudios/Art/Materials/M_ContainerParts.mat
|
||||
uploadId: 782779
|
||||
@@ -1,193 +0,0 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: M_Crates
|
||||
m_Shader: {fileID: -6465566751694194690, guid: bb2b9fd294686ac489b6c02ab0921e98,
|
||||
type: 3}
|
||||
m_ValidKeywords:
|
||||
- _ALPHATEST_ON
|
||||
- _DISABLE_SSR_TRANSPARENT
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 1
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: 2475
|
||||
stringTagMap:
|
||||
MotionVector: User
|
||||
RenderType: TransparentCutout
|
||||
disabledShaderPasses:
|
||||
- TransparentDepthPrepass
|
||||
- TransparentDepthPostpass
|
||||
- TransparentBackface
|
||||
- RayTracingPrepass
|
||||
- MOTIONVECTORS
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _AlphaClipping:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BaseTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000006329978500346600184, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MaskTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NormalTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000002824546684668230220, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ORMTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000006666981142276178562, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SecondTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _Texture2DAsset_50d8aa134ded4f3ba8216b2c6da2550a_Out_0:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000011191443335310782487, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _WorldAlignTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _A_Dirt: 0
|
||||
- _A_Edge: 0
|
||||
- _A_Mask: 0
|
||||
- _AddPrecomputedVelocity: 0
|
||||
- _AddSecondNormal: 0
|
||||
- _AlphaCutoffEnable: 1
|
||||
- _AlphaDstBlend: 0
|
||||
- _AlphaOpacity: 0.75
|
||||
- _AlphaSrcBlend: 1
|
||||
- _AlphaToMask: 0
|
||||
- _AlphaToMaskInspectorValue: 0
|
||||
- _AlphaTreshold: 0.45
|
||||
- _B_Dirt: 0
|
||||
- _B_Edge: 0
|
||||
- _B_Mask: 0
|
||||
- _BaseColorMultiply: 1.15
|
||||
- _BlendMode: 0
|
||||
- _ChangeInstantColor_1: 0
|
||||
- _ConservativeDepthOffsetEnable: 0
|
||||
- _CullMode: 2
|
||||
- _CullModeForward: 2
|
||||
- _DepthOffsetEnable: 0
|
||||
- _Dirt_Intensity: 0.5
|
||||
- _DoubleSidedEnable: 0
|
||||
- _DoubleSidedGIMode: 0
|
||||
- _DoubleSidedNormalMode: 2
|
||||
- _DstBlend: 0
|
||||
- _Edges_Intensity: 1
|
||||
- _Emissive: 1
|
||||
- _EmissiveIntensity: 2.76
|
||||
- _EnableBlendModePreserveSpecularLighting: 1
|
||||
- _EnableDirt: 0
|
||||
- _EnableEdge: 0
|
||||
- _EnableFogOnTransparent: 1
|
||||
- _G_Dirt: 0
|
||||
- _G_Edge: 0
|
||||
- _G_Mask: 0
|
||||
- _MaskAdjustment: 1
|
||||
- _MetallicIntensity: 0.75
|
||||
- _NormalIntensity: 1
|
||||
- _OpaqueCullMode: 2
|
||||
- _PomHeight: 1
|
||||
- _PomQuality: 32
|
||||
- _R_Dirt: 0
|
||||
- _R_Edge: 0
|
||||
- _R_Mask: 0
|
||||
- _RayTracing: 0
|
||||
- _ReceivesSSR: 1
|
||||
- _ReceivesSSRTransparent: 0
|
||||
- _RefractionModel: 0
|
||||
- _RenderQueueType: 1
|
||||
- _RequireSplitLighting: 0
|
||||
- _Saturation: 1
|
||||
- _SaturationWorldAlign: 1
|
||||
- _SecondNormalTile: 4.68
|
||||
- _SecondTextureColorMultiply: 1
|
||||
- _SmoothnessIntensity: 1.05
|
||||
- _SrcBlend: 1
|
||||
- _StencilRef: 0
|
||||
- _StencilRefDepth: 8
|
||||
- _StencilRefDistortionVec: 4
|
||||
- _StencilRefGBuffer: 10
|
||||
- _StencilRefMV: 40
|
||||
- _StencilWriteMask: 6
|
||||
- _StencilWriteMaskDepth: 8
|
||||
- _StencilWriteMaskDistortionVec: 4
|
||||
- _StencilWriteMaskGBuffer: 14
|
||||
- _StencilWriteMaskMV: 40
|
||||
- _SupportDecals: 1
|
||||
- _SurfaceType: 0
|
||||
- _TransparentBackfaceEnable: 0
|
||||
- _TransparentCullMode: 2
|
||||
- _TransparentDepthPostpassEnable: 0
|
||||
- _TransparentDepthPrepassEnable: 0
|
||||
- _TransparentSortPriority: 0
|
||||
- _TransparentWritingMotionVec: 0
|
||||
- _TransparentZWrite: 0
|
||||
- _UV_Tiling: 1
|
||||
- _UseAlphaClipping: 0
|
||||
- _UseInstantColor: 1
|
||||
- _UsePom: 0
|
||||
- _UseShadowThreshold: 0
|
||||
- _UseWorldAlign: 0
|
||||
- _WorldAlignTile: 512
|
||||
- _ZTestDepthEqualForOpaque: 3
|
||||
- _ZTestGBuffer: 3
|
||||
- _ZTestTransparent: 4
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _AlbedoTint: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _ChangeInstantColor: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _Dirt_Color: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _DoubleSidedConstants: {r: 1, g: 1, b: -1, a: 0}
|
||||
- _EdgeColor: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _EmissionColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _EmissiveColor: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _PomOffset: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _SecondColorMultiply: {r: 1, g: 1, b: 1, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
--- !u!114 &3696197708043593277
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 12
|
||||
hdPluginSubTargetMaterialVersions:
|
||||
m_Keys: []
|
||||
m_Values:
|
||||
@@ -1,15 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 114ae98a779b9174cb1f01fe11bcfeb4
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 330726
|
||||
packageName: Orbital Base Environment
|
||||
packageVersion: 1.0
|
||||
assetPath: Assets/BefourStudios/Art/Materials/M_Crates.mat
|
||||
uploadId: 782779
|
||||
@@ -1,186 +0,0 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: M_CratesDisabled
|
||||
m_Shader: {fileID: -6465566751694194690, guid: bb2b9fd294686ac489b6c02ab0921e98,
|
||||
type: 3}
|
||||
m_ValidKeywords:
|
||||
- _ALPHATEST_ON
|
||||
- _DISABLE_SSR_TRANSPARENT
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 1
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: 2475
|
||||
stringTagMap:
|
||||
MotionVector: User
|
||||
RenderType: TransparentCutout
|
||||
disabledShaderPasses:
|
||||
- TransparentDepthPrepass
|
||||
- TransparentDepthPostpass
|
||||
- TransparentBackface
|
||||
- RayTracingPrepass
|
||||
- MOTIONVECTORS
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _AlphaClipping:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BaseTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000006329978500346600184, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MaskTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NormalTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000002824546684668230220, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ORMTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000006666981142276178562, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SecondTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _WorldAlignTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _A_Dirt: 0
|
||||
- _A_Edge: 0
|
||||
- _A_Mask: 0
|
||||
- _AddPrecomputedVelocity: 0
|
||||
- _AlphaCutoffEnable: 1
|
||||
- _AlphaDstBlend: 0
|
||||
- _AlphaOpacity: 0.75
|
||||
- _AlphaSrcBlend: 1
|
||||
- _AlphaToMask: 0
|
||||
- _AlphaToMaskInspectorValue: 0
|
||||
- _AlphaTreshold: 0.45
|
||||
- _B_Dirt: 0
|
||||
- _B_Edge: 0
|
||||
- _B_Mask: 0
|
||||
- _BaseColorMultiply: 1.15
|
||||
- _BlendMode: 0
|
||||
- _ChangeInstantColor_1: 0
|
||||
- _ConservativeDepthOffsetEnable: 0
|
||||
- _CullMode: 2
|
||||
- _CullModeForward: 2
|
||||
- _DepthOffsetEnable: 0
|
||||
- _Dirt_Intensity: 0.5
|
||||
- _DoubleSidedEnable: 0
|
||||
- _DoubleSidedGIMode: 0
|
||||
- _DoubleSidedNormalMode: 2
|
||||
- _DstBlend: 0
|
||||
- _Edges_Intensity: 1
|
||||
- _Emissive: 0
|
||||
- _EmissiveIntensity: 1
|
||||
- _EnableBlendModePreserveSpecularLighting: 1
|
||||
- _EnableDirt: 0
|
||||
- _EnableEdge: 0
|
||||
- _EnableFogOnTransparent: 1
|
||||
- _G_Dirt: 0
|
||||
- _G_Edge: 0
|
||||
- _G_Mask: 0
|
||||
- _MaskAdjustment: 1
|
||||
- _MetallicIntensity: 0.75
|
||||
- _NormalIntensity: 1
|
||||
- _OpaqueCullMode: 2
|
||||
- _PomHeight: 1
|
||||
- _PomQuality: 32
|
||||
- _R_Dirt: 0
|
||||
- _R_Edge: 0
|
||||
- _R_Mask: 0
|
||||
- _RayTracing: 0
|
||||
- _ReceivesSSR: 1
|
||||
- _ReceivesSSRTransparent: 0
|
||||
- _RefractionModel: 0
|
||||
- _RenderQueueType: 1
|
||||
- _RequireSplitLighting: 0
|
||||
- _Saturation: 1
|
||||
- _SaturationWorldAlign: 1
|
||||
- _SecondTextureColorMultiply: 1
|
||||
- _SmoothnessIntensity: 1.05
|
||||
- _SrcBlend: 1
|
||||
- _StencilRef: 0
|
||||
- _StencilRefDepth: 8
|
||||
- _StencilRefDistortionVec: 4
|
||||
- _StencilRefGBuffer: 10
|
||||
- _StencilRefMV: 40
|
||||
- _StencilWriteMask: 6
|
||||
- _StencilWriteMaskDepth: 8
|
||||
- _StencilWriteMaskDistortionVec: 4
|
||||
- _StencilWriteMaskGBuffer: 14
|
||||
- _StencilWriteMaskMV: 40
|
||||
- _SupportDecals: 1
|
||||
- _SurfaceType: 0
|
||||
- _TransparentBackfaceEnable: 0
|
||||
- _TransparentCullMode: 2
|
||||
- _TransparentDepthPostpassEnable: 0
|
||||
- _TransparentDepthPrepassEnable: 0
|
||||
- _TransparentSortPriority: 0
|
||||
- _TransparentWritingMotionVec: 0
|
||||
- _TransparentZWrite: 0
|
||||
- _UV_Tiling: 1
|
||||
- _UseAlphaClipping: 0
|
||||
- _UseInstantColor: 1
|
||||
- _UsePom: 0
|
||||
- _UseShadowThreshold: 0
|
||||
- _UseWorldAlign: 0
|
||||
- _WorldAlignTile: 512
|
||||
- _ZTestDepthEqualForOpaque: 3
|
||||
- _ZTestGBuffer: 3
|
||||
- _ZTestTransparent: 4
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _AlbedoTint: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _ChangeInstantColor: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _Dirt_Color: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _DoubleSidedConstants: {r: 1, g: 1, b: -1, a: 0}
|
||||
- _EdgeColor: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _EmissionColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _EmissiveColor: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _SecondColorMultiply: {r: 1, g: 1, b: 1, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
--- !u!114 &3696197708043593277
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 12
|
||||
hdPluginSubTargetMaterialVersions:
|
||||
m_Keys: []
|
||||
m_Values:
|
||||
@@ -1,15 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: aad2690518a54b34aab8d4cd02a2ae4b
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 330726
|
||||
packageName: Orbital Base Environment
|
||||
packageVersion: 1.0
|
||||
assetPath: Assets/BefourStudios/Art/Materials/M_CratesDisabled.mat
|
||||
uploadId: 782779
|
||||
@@ -1,186 +0,0 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: M_CratesWhite
|
||||
m_Shader: {fileID: -6465566751694194690, guid: bb2b9fd294686ac489b6c02ab0921e98,
|
||||
type: 3}
|
||||
m_ValidKeywords:
|
||||
- _ALPHATEST_ON
|
||||
- _DISABLE_SSR_TRANSPARENT
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 1
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: 2475
|
||||
stringTagMap:
|
||||
MotionVector: User
|
||||
RenderType: TransparentCutout
|
||||
disabledShaderPasses:
|
||||
- TransparentDepthPrepass
|
||||
- TransparentDepthPostpass
|
||||
- TransparentBackface
|
||||
- RayTracingPrepass
|
||||
- MOTIONVECTORS
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _AlphaClipping:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BaseTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000006329978500346600184, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MaskTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NormalTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000002824546684668230220, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ORMTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000006666981142276178562, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SecondTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _WorldAlignTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _A_Dirt: 0
|
||||
- _A_Edge: 0
|
||||
- _A_Mask: 0
|
||||
- _AddPrecomputedVelocity: 0
|
||||
- _AlphaCutoffEnable: 1
|
||||
- _AlphaDstBlend: 0
|
||||
- _AlphaOpacity: 0.75
|
||||
- _AlphaSrcBlend: 1
|
||||
- _AlphaToMask: 0
|
||||
- _AlphaToMaskInspectorValue: 0
|
||||
- _AlphaTreshold: 0.45
|
||||
- _B_Dirt: 0
|
||||
- _B_Edge: 0
|
||||
- _B_Mask: 0
|
||||
- _BaseColorMultiply: 1.15
|
||||
- _BlendMode: 0
|
||||
- _ChangeInstantColor_1: 1
|
||||
- _ConservativeDepthOffsetEnable: 0
|
||||
- _CullMode: 2
|
||||
- _CullModeForward: 2
|
||||
- _DepthOffsetEnable: 0
|
||||
- _Dirt_Intensity: 0.5
|
||||
- _DoubleSidedEnable: 0
|
||||
- _DoubleSidedGIMode: 0
|
||||
- _DoubleSidedNormalMode: 2
|
||||
- _DstBlend: 0
|
||||
- _Edges_Intensity: 1
|
||||
- _Emissive: 0
|
||||
- _EmissiveIntensity: 1
|
||||
- _EnableBlendModePreserveSpecularLighting: 1
|
||||
- _EnableDirt: 0
|
||||
- _EnableEdge: 0
|
||||
- _EnableFogOnTransparent: 1
|
||||
- _G_Dirt: 0
|
||||
- _G_Edge: 0
|
||||
- _G_Mask: 0
|
||||
- _MaskAdjustment: 1
|
||||
- _MetallicIntensity: 0.75
|
||||
- _NormalIntensity: 1
|
||||
- _OpaqueCullMode: 2
|
||||
- _PomHeight: 1
|
||||
- _PomQuality: 32
|
||||
- _R_Dirt: 0
|
||||
- _R_Edge: 0
|
||||
- _R_Mask: 0
|
||||
- _RayTracing: 0
|
||||
- _ReceivesSSR: 1
|
||||
- _ReceivesSSRTransparent: 0
|
||||
- _RefractionModel: 0
|
||||
- _RenderQueueType: 1
|
||||
- _RequireSplitLighting: 0
|
||||
- _Saturation: 1
|
||||
- _SaturationWorldAlign: 1
|
||||
- _SecondTextureColorMultiply: 1
|
||||
- _SmoothnessIntensity: 1.05
|
||||
- _SrcBlend: 1
|
||||
- _StencilRef: 0
|
||||
- _StencilRefDepth: 8
|
||||
- _StencilRefDistortionVec: 4
|
||||
- _StencilRefGBuffer: 10
|
||||
- _StencilRefMV: 40
|
||||
- _StencilWriteMask: 6
|
||||
- _StencilWriteMaskDepth: 8
|
||||
- _StencilWriteMaskDistortionVec: 4
|
||||
- _StencilWriteMaskGBuffer: 14
|
||||
- _StencilWriteMaskMV: 40
|
||||
- _SupportDecals: 1
|
||||
- _SurfaceType: 0
|
||||
- _TransparentBackfaceEnable: 0
|
||||
- _TransparentCullMode: 2
|
||||
- _TransparentDepthPostpassEnable: 0
|
||||
- _TransparentDepthPrepassEnable: 0
|
||||
- _TransparentSortPriority: 0
|
||||
- _TransparentWritingMotionVec: 0
|
||||
- _TransparentZWrite: 0
|
||||
- _UV_Tiling: 1
|
||||
- _UseAlphaClipping: 0
|
||||
- _UseInstantColor: 1
|
||||
- _UsePom: 0
|
||||
- _UseShadowThreshold: 0
|
||||
- _UseWorldAlign: 0
|
||||
- _WorldAlignTile: 512
|
||||
- _ZTestDepthEqualForOpaque: 3
|
||||
- _ZTestGBuffer: 3
|
||||
- _ZTestTransparent: 4
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _AlbedoTint: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _ChangeInstantColor: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _Dirt_Color: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _DoubleSidedConstants: {r: 1, g: 1, b: -1, a: 0}
|
||||
- _EdgeColor: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _EmissionColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _EmissiveColor: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _SecondColorMultiply: {r: 1, g: 1, b: 1, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
--- !u!114 &3696197708043593277
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 12
|
||||
hdPluginSubTargetMaterialVersions:
|
||||
m_Keys: []
|
||||
m_Values:
|
||||
@@ -1,15 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: be4e3ae7c724ef743a2b5fbf8150ae0f
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 330726
|
||||
packageName: Orbital Base Environment
|
||||
packageVersion: 1.0
|
||||
assetPath: Assets/BefourStudios/Art/Materials/M_CratesWhite.mat
|
||||
uploadId: 782779
|
||||
@@ -1,193 +0,0 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: M_DecalsBathroom
|
||||
m_Shader: {fileID: -6465566751694194690, guid: bb2b9fd294686ac489b6c02ab0921e98,
|
||||
type: 3}
|
||||
m_ValidKeywords:
|
||||
- _ALPHATEST_ON
|
||||
- _DISABLE_SSR_TRANSPARENT
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 1
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: 2475
|
||||
stringTagMap:
|
||||
MotionVector: User
|
||||
RenderType: TransparentCutout
|
||||
disabledShaderPasses:
|
||||
- TransparentDepthPrepass
|
||||
- TransparentDepthPostpass
|
||||
- TransparentBackface
|
||||
- RayTracingPrepass
|
||||
- MOTIONVECTORS
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _AlphaClipping:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BaseTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000003648568229407236880, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MaskTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NormalTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000008715231071997529044, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ORMTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000007033487436870861467, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SecondTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _Texture2DAsset_50d8aa134ded4f3ba8216b2c6da2550a_Out_0:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000011191443335310782487, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _WorldAlignTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _A_Dirt: 0
|
||||
- _A_Edge: 0
|
||||
- _A_Mask: 0
|
||||
- _AddPrecomputedVelocity: 0
|
||||
- _AddSecondNormal: 0
|
||||
- _AlphaCutoffEnable: 1
|
||||
- _AlphaDstBlend: 0
|
||||
- _AlphaOpacity: 0.75
|
||||
- _AlphaSrcBlend: 1
|
||||
- _AlphaToMask: 0
|
||||
- _AlphaToMaskInspectorValue: 0
|
||||
- _AlphaTreshold: 0.45
|
||||
- _B_Dirt: 0
|
||||
- _B_Edge: 0
|
||||
- _B_Mask: 0
|
||||
- _BaseColorMultiply: 1
|
||||
- _BlendMode: 0
|
||||
- _ChangeInstantColor_1: 0
|
||||
- _ConservativeDepthOffsetEnable: 0
|
||||
- _CullMode: 2
|
||||
- _CullModeForward: 2
|
||||
- _DepthOffsetEnable: 0
|
||||
- _Dirt_Intensity: 0.5
|
||||
- _DoubleSidedEnable: 0
|
||||
- _DoubleSidedGIMode: 0
|
||||
- _DoubleSidedNormalMode: 2
|
||||
- _DstBlend: 0
|
||||
- _Edges_Intensity: 1
|
||||
- _Emissive: 0
|
||||
- _EmissiveIntensity: 1
|
||||
- _EnableBlendModePreserveSpecularLighting: 1
|
||||
- _EnableDirt: 0
|
||||
- _EnableEdge: 0
|
||||
- _EnableFogOnTransparent: 1
|
||||
- _G_Dirt: 0
|
||||
- _G_Edge: 0
|
||||
- _G_Mask: 0
|
||||
- _MaskAdjustment: 1
|
||||
- _MetallicIntensity: 1.42
|
||||
- _NormalIntensity: 1
|
||||
- _OpaqueCullMode: 2
|
||||
- _PomHeight: 2.22
|
||||
- _PomQuality: 32
|
||||
- _R_Dirt: 0
|
||||
- _R_Edge: 0
|
||||
- _R_Mask: 0
|
||||
- _RayTracing: 0
|
||||
- _ReceivesSSR: 1
|
||||
- _ReceivesSSRTransparent: 0
|
||||
- _RefractionModel: 0
|
||||
- _RenderQueueType: 1
|
||||
- _RequireSplitLighting: 0
|
||||
- _Saturation: 1
|
||||
- _SaturationWorldAlign: 1
|
||||
- _SecondNormalTile: 4.68
|
||||
- _SecondTextureColorMultiply: 1
|
||||
- _SmoothnessIntensity: 1.11
|
||||
- _SrcBlend: 1
|
||||
- _StencilRef: 0
|
||||
- _StencilRefDepth: 8
|
||||
- _StencilRefDistortionVec: 4
|
||||
- _StencilRefGBuffer: 10
|
||||
- _StencilRefMV: 40
|
||||
- _StencilWriteMask: 6
|
||||
- _StencilWriteMaskDepth: 8
|
||||
- _StencilWriteMaskDistortionVec: 4
|
||||
- _StencilWriteMaskGBuffer: 14
|
||||
- _StencilWriteMaskMV: 40
|
||||
- _SupportDecals: 1
|
||||
- _SurfaceType: 0
|
||||
- _TransparentBackfaceEnable: 0
|
||||
- _TransparentCullMode: 2
|
||||
- _TransparentDepthPostpassEnable: 0
|
||||
- _TransparentDepthPrepassEnable: 0
|
||||
- _TransparentSortPriority: 0
|
||||
- _TransparentWritingMotionVec: 0
|
||||
- _TransparentZWrite: 0
|
||||
- _UV_Tiling: 1
|
||||
- _UseAlphaClipping: 1
|
||||
- _UseInstantColor: 0
|
||||
- _UsePom: 1
|
||||
- _UseShadowThreshold: 0
|
||||
- _UseWorldAlign: 0
|
||||
- _WorldAlignTile: 512
|
||||
- _ZTestDepthEqualForOpaque: 3
|
||||
- _ZTestGBuffer: 3
|
||||
- _ZTestTransparent: 4
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _AlbedoTint: {r: 0.8490566, g: 0.8490566, b: 0.8490566, a: 0}
|
||||
- _ChangeInstantColor: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _Dirt_Color: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _DoubleSidedConstants: {r: 1, g: 1, b: -1, a: 0}
|
||||
- _EdgeColor: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _EmissionColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _EmissiveColor: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _PomOffset: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _SecondColorMultiply: {r: 1, g: 1, b: 1, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
--- !u!114 &3696197708043593277
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 12
|
||||
hdPluginSubTargetMaterialVersions:
|
||||
m_Keys: []
|
||||
m_Values:
|
||||
@@ -1,15 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 7881a4e63377d3f40a858ebb53595cfe
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 330726
|
||||
packageName: Orbital Base Environment
|
||||
packageVersion: 1.0
|
||||
assetPath: Assets/BefourStudios/Art/Materials/M_DecalsBathroom.mat
|
||||
uploadId: 782779
|
||||
@@ -1,187 +0,0 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: M_DecalsBathroomBrighter
|
||||
m_Shader: {fileID: -6465566751694194690, guid: bb2b9fd294686ac489b6c02ab0921e98,
|
||||
type: 3}
|
||||
m_ValidKeywords:
|
||||
- _ALPHATEST_ON
|
||||
- _DISABLE_SSR_TRANSPARENT
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 1
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: 2475
|
||||
stringTagMap:
|
||||
MotionVector: User
|
||||
RenderType: TransparentCutout
|
||||
disabledShaderPasses:
|
||||
- TransparentDepthPrepass
|
||||
- TransparentDepthPostpass
|
||||
- TransparentBackface
|
||||
- RayTracingPrepass
|
||||
- MOTIONVECTORS
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _AlphaClipping:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BaseTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000003648568229407236880, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MaskTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NormalTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000008715231071997529044, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ORMTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000007033487436870861467, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SecondTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _WorldAlignTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _A_Dirt: 0
|
||||
- _A_Edge: 0
|
||||
- _A_Mask: 0
|
||||
- _AddPrecomputedVelocity: 0
|
||||
- _AlphaCutoffEnable: 1
|
||||
- _AlphaDstBlend: 0
|
||||
- _AlphaOpacity: 0.75
|
||||
- _AlphaSrcBlend: 1
|
||||
- _AlphaToMask: 0
|
||||
- _AlphaToMaskInspectorValue: 0
|
||||
- _AlphaTreshold: 0.45
|
||||
- _B_Dirt: 0
|
||||
- _B_Edge: 0
|
||||
- _B_Mask: 0
|
||||
- _BaseColorMultiply: 1
|
||||
- _BlendMode: 0
|
||||
- _ChangeInstantColor_1: 0
|
||||
- _ConservativeDepthOffsetEnable: 0
|
||||
- _CullMode: 2
|
||||
- _CullModeForward: 2
|
||||
- _DepthOffsetEnable: 0
|
||||
- _Dirt_Intensity: 0.5
|
||||
- _DoubleSidedEnable: 0
|
||||
- _DoubleSidedGIMode: 0
|
||||
- _DoubleSidedNormalMode: 2
|
||||
- _DstBlend: 0
|
||||
- _Edges_Intensity: 1
|
||||
- _Emissive: 0
|
||||
- _EmissiveIntensity: 1
|
||||
- _EnableBlendModePreserveSpecularLighting: 1
|
||||
- _EnableDirt: 0
|
||||
- _EnableEdge: 0
|
||||
- _EnableFogOnTransparent: 1
|
||||
- _G_Dirt: 0
|
||||
- _G_Edge: 0
|
||||
- _G_Mask: 0
|
||||
- _MaskAdjustment: 1
|
||||
- _MetallicIntensity: 1.42
|
||||
- _NormalIntensity: 1
|
||||
- _OpaqueCullMode: 2
|
||||
- _PomHeight: 2.22
|
||||
- _PomQuality: 32
|
||||
- _R_Dirt: 0
|
||||
- _R_Edge: 0
|
||||
- _R_Mask: 0
|
||||
- _RayTracing: 0
|
||||
- _ReceivesSSR: 1
|
||||
- _ReceivesSSRTransparent: 0
|
||||
- _RefractionModel: 0
|
||||
- _RenderQueueType: 1
|
||||
- _RequireSplitLighting: 0
|
||||
- _Saturation: 1
|
||||
- _SaturationWorldAlign: 1
|
||||
- _SecondTextureColorMultiply: 1
|
||||
- _SmoothnessIntensity: 1.11
|
||||
- _SrcBlend: 1
|
||||
- _StencilRef: 0
|
||||
- _StencilRefDepth: 8
|
||||
- _StencilRefDistortionVec: 4
|
||||
- _StencilRefGBuffer: 10
|
||||
- _StencilRefMV: 40
|
||||
- _StencilWriteMask: 6
|
||||
- _StencilWriteMaskDepth: 8
|
||||
- _StencilWriteMaskDistortionVec: 4
|
||||
- _StencilWriteMaskGBuffer: 14
|
||||
- _StencilWriteMaskMV: 40
|
||||
- _SupportDecals: 1
|
||||
- _SurfaceType: 0
|
||||
- _TransparentBackfaceEnable: 0
|
||||
- _TransparentCullMode: 2
|
||||
- _TransparentDepthPostpassEnable: 0
|
||||
- _TransparentDepthPrepassEnable: 0
|
||||
- _TransparentSortPriority: 0
|
||||
- _TransparentWritingMotionVec: 0
|
||||
- _TransparentZWrite: 0
|
||||
- _UV_Tiling: 1
|
||||
- _UseAlphaClipping: 1
|
||||
- _UseInstantColor: 0
|
||||
- _UsePom: 1
|
||||
- _UseShadowThreshold: 0
|
||||
- _UseWorldAlign: 0
|
||||
- _WorldAlignTile: 512
|
||||
- _ZTestDepthEqualForOpaque: 3
|
||||
- _ZTestGBuffer: 3
|
||||
- _ZTestTransparent: 4
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _AlbedoTint: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _ChangeInstantColor: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _Dirt_Color: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _DoubleSidedConstants: {r: 1, g: 1, b: -1, a: 0}
|
||||
- _EdgeColor: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _EmissionColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _EmissiveColor: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _PomOffset: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _SecondColorMultiply: {r: 1, g: 1, b: 1, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
--- !u!114 &3696197708043593277
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 12
|
||||
hdPluginSubTargetMaterialVersions:
|
||||
m_Keys: []
|
||||
m_Values:
|
||||
@@ -1,15 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 5037c81b610e8854fb8909bf6aec238b
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 330726
|
||||
packageName: Orbital Base Environment
|
||||
packageVersion: 1.0
|
||||
assetPath: Assets/BefourStudios/Art/Materials/M_DecalsBathroomBrighter.mat
|
||||
uploadId: 782779
|
||||
@@ -1,193 +0,0 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: M_DecalsBathroomCeramic
|
||||
m_Shader: {fileID: -6465566751694194690, guid: bb2b9fd294686ac489b6c02ab0921e98,
|
||||
type: 3}
|
||||
m_ValidKeywords:
|
||||
- _ALPHATEST_ON
|
||||
- _DISABLE_SSR_TRANSPARENT
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 1
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: 2475
|
||||
stringTagMap:
|
||||
MotionVector: User
|
||||
RenderType: TransparentCutout
|
||||
disabledShaderPasses:
|
||||
- TransparentDepthPrepass
|
||||
- TransparentDepthPostpass
|
||||
- TransparentBackface
|
||||
- RayTracingPrepass
|
||||
- MOTIONVECTORS
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _AlphaClipping:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BaseTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000003648568229407236880, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MaskTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NormalTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000008715231071997529044, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ORMTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000007033487436870861467, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SecondTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _Texture2DAsset_50d8aa134ded4f3ba8216b2c6da2550a_Out_0:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000011191443335310782487, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _WorldAlignTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _A_Dirt: 0
|
||||
- _A_Edge: 0
|
||||
- _A_Mask: 0
|
||||
- _AddPrecomputedVelocity: 0
|
||||
- _AddSecondNormal: 0
|
||||
- _AlphaCutoffEnable: 1
|
||||
- _AlphaDstBlend: 0
|
||||
- _AlphaOpacity: 0.75
|
||||
- _AlphaSrcBlend: 1
|
||||
- _AlphaToMask: 0
|
||||
- _AlphaToMaskInspectorValue: 0
|
||||
- _AlphaTreshold: 0.45
|
||||
- _B_Dirt: 0
|
||||
- _B_Edge: 0
|
||||
- _B_Mask: 0
|
||||
- _BaseColorMultiply: 1
|
||||
- _BlendMode: 0
|
||||
- _ChangeInstantColor_1: 0
|
||||
- _ConservativeDepthOffsetEnable: 0
|
||||
- _CullMode: 2
|
||||
- _CullModeForward: 2
|
||||
- _DepthOffsetEnable: 0
|
||||
- _Dirt_Intensity: 0.5
|
||||
- _DoubleSidedEnable: 0
|
||||
- _DoubleSidedGIMode: 0
|
||||
- _DoubleSidedNormalMode: 2
|
||||
- _DstBlend: 0
|
||||
- _Edges_Intensity: 1
|
||||
- _Emissive: 0
|
||||
- _EmissiveIntensity: 1
|
||||
- _EnableBlendModePreserveSpecularLighting: 1
|
||||
- _EnableDirt: 0
|
||||
- _EnableEdge: 0
|
||||
- _EnableFogOnTransparent: 1
|
||||
- _G_Dirt: 0
|
||||
- _G_Edge: 0
|
||||
- _G_Mask: 0
|
||||
- _MaskAdjustment: 1
|
||||
- _MetallicIntensity: 1.42
|
||||
- _NormalIntensity: 1
|
||||
- _OpaqueCullMode: 2
|
||||
- _PomHeight: 2.22
|
||||
- _PomQuality: 32
|
||||
- _R_Dirt: 0
|
||||
- _R_Edge: 0
|
||||
- _R_Mask: 0
|
||||
- _RayTracing: 0
|
||||
- _ReceivesSSR: 1
|
||||
- _ReceivesSSRTransparent: 0
|
||||
- _RefractionModel: 0
|
||||
- _RenderQueueType: 1
|
||||
- _RequireSplitLighting: 0
|
||||
- _Saturation: 1
|
||||
- _SaturationWorldAlign: 1
|
||||
- _SecondNormalTile: 4.68
|
||||
- _SecondTextureColorMultiply: 1
|
||||
- _SmoothnessIntensity: 0.81
|
||||
- _SrcBlend: 1
|
||||
- _StencilRef: 0
|
||||
- _StencilRefDepth: 8
|
||||
- _StencilRefDistortionVec: 4
|
||||
- _StencilRefGBuffer: 10
|
||||
- _StencilRefMV: 40
|
||||
- _StencilWriteMask: 6
|
||||
- _StencilWriteMaskDepth: 8
|
||||
- _StencilWriteMaskDistortionVec: 4
|
||||
- _StencilWriteMaskGBuffer: 14
|
||||
- _StencilWriteMaskMV: 40
|
||||
- _SupportDecals: 1
|
||||
- _SurfaceType: 0
|
||||
- _TransparentBackfaceEnable: 0
|
||||
- _TransparentCullMode: 2
|
||||
- _TransparentDepthPostpassEnable: 0
|
||||
- _TransparentDepthPrepassEnable: 0
|
||||
- _TransparentSortPriority: 0
|
||||
- _TransparentWritingMotionVec: 0
|
||||
- _TransparentZWrite: 0
|
||||
- _UV_Tiling: 1
|
||||
- _UseAlphaClipping: 1
|
||||
- _UseInstantColor: 0
|
||||
- _UsePom: 1
|
||||
- _UseShadowThreshold: 0
|
||||
- _UseWorldAlign: 0
|
||||
- _WorldAlignTile: 512
|
||||
- _ZTestDepthEqualForOpaque: 3
|
||||
- _ZTestGBuffer: 3
|
||||
- _ZTestTransparent: 4
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _AlbedoTint: {r: 0.8490566, g: 0.8490566, b: 0.8490566, a: 0}
|
||||
- _ChangeInstantColor: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _Dirt_Color: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _DoubleSidedConstants: {r: 1, g: 1, b: -1, a: 0}
|
||||
- _EdgeColor: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _EmissionColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _EmissiveColor: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _PomOffset: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _SecondColorMultiply: {r: 1, g: 1, b: 1, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
--- !u!114 &3696197708043593277
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 12
|
||||
hdPluginSubTargetMaterialVersions:
|
||||
m_Keys: []
|
||||
m_Values:
|
||||
@@ -1,15 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 4f650ee898b858e4d9a1b445815cc9dd
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 330726
|
||||
packageName: Orbital Base Environment
|
||||
packageVersion: 1.0
|
||||
assetPath: Assets/BefourStudios/Art/Materials/M_DecalsBathroomCeramic.mat
|
||||
uploadId: 782779
|
||||
@@ -1,193 +0,0 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: M_DecalsBathroomDarker
|
||||
m_Shader: {fileID: -6465566751694194690, guid: bb2b9fd294686ac489b6c02ab0921e98,
|
||||
type: 3}
|
||||
m_ValidKeywords:
|
||||
- _ALPHATEST_ON
|
||||
- _DISABLE_SSR_TRANSPARENT
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 1
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: 2475
|
||||
stringTagMap:
|
||||
MotionVector: User
|
||||
RenderType: TransparentCutout
|
||||
disabledShaderPasses:
|
||||
- TransparentDepthPrepass
|
||||
- TransparentDepthPostpass
|
||||
- TransparentBackface
|
||||
- RayTracingPrepass
|
||||
- MOTIONVECTORS
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _AlphaClipping:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BaseTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000003648568229407236880, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MaskTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NormalTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000008715231071997529044, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ORMTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000007033487436870861467, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SecondTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _Texture2DAsset_50d8aa134ded4f3ba8216b2c6da2550a_Out_0:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000011191443335310782487, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _WorldAlignTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _A_Dirt: 0
|
||||
- _A_Edge: 0
|
||||
- _A_Mask: 0
|
||||
- _AddPrecomputedVelocity: 0
|
||||
- _AddSecondNormal: 0
|
||||
- _AlphaCutoffEnable: 1
|
||||
- _AlphaDstBlend: 0
|
||||
- _AlphaOpacity: 0.75
|
||||
- _AlphaSrcBlend: 1
|
||||
- _AlphaToMask: 0
|
||||
- _AlphaToMaskInspectorValue: 0
|
||||
- _AlphaTreshold: 0.45
|
||||
- _B_Dirt: 0
|
||||
- _B_Edge: 0
|
||||
- _B_Mask: 0
|
||||
- _BaseColorMultiply: 1
|
||||
- _BlendMode: 0
|
||||
- _ChangeInstantColor_1: 0
|
||||
- _ConservativeDepthOffsetEnable: 0
|
||||
- _CullMode: 2
|
||||
- _CullModeForward: 2
|
||||
- _DepthOffsetEnable: 0
|
||||
- _Dirt_Intensity: 0.5
|
||||
- _DoubleSidedEnable: 0
|
||||
- _DoubleSidedGIMode: 0
|
||||
- _DoubleSidedNormalMode: 2
|
||||
- _DstBlend: 0
|
||||
- _Edges_Intensity: 1
|
||||
- _Emissive: 0
|
||||
- _EmissiveIntensity: 1
|
||||
- _EnableBlendModePreserveSpecularLighting: 1
|
||||
- _EnableDirt: 0
|
||||
- _EnableEdge: 0
|
||||
- _EnableFogOnTransparent: 1
|
||||
- _G_Dirt: 0
|
||||
- _G_Edge: 0
|
||||
- _G_Mask: 0
|
||||
- _MaskAdjustment: 1
|
||||
- _MetallicIntensity: 1.42
|
||||
- _NormalIntensity: 1
|
||||
- _OpaqueCullMode: 2
|
||||
- _PomHeight: 2.22
|
||||
- _PomQuality: 32
|
||||
- _R_Dirt: 0
|
||||
- _R_Edge: 0
|
||||
- _R_Mask: 0
|
||||
- _RayTracing: 0
|
||||
- _ReceivesSSR: 1
|
||||
- _ReceivesSSRTransparent: 0
|
||||
- _RefractionModel: 0
|
||||
- _RenderQueueType: 1
|
||||
- _RequireSplitLighting: 0
|
||||
- _Saturation: 1
|
||||
- _SaturationWorldAlign: 1
|
||||
- _SecondNormalTile: 4.68
|
||||
- _SecondTextureColorMultiply: 1
|
||||
- _SmoothnessIntensity: 1.11
|
||||
- _SrcBlend: 1
|
||||
- _StencilRef: 0
|
||||
- _StencilRefDepth: 8
|
||||
- _StencilRefDistortionVec: 4
|
||||
- _StencilRefGBuffer: 10
|
||||
- _StencilRefMV: 40
|
||||
- _StencilWriteMask: 6
|
||||
- _StencilWriteMaskDepth: 8
|
||||
- _StencilWriteMaskDistortionVec: 4
|
||||
- _StencilWriteMaskGBuffer: 14
|
||||
- _StencilWriteMaskMV: 40
|
||||
- _SupportDecals: 1
|
||||
- _SurfaceType: 0
|
||||
- _TransparentBackfaceEnable: 0
|
||||
- _TransparentCullMode: 2
|
||||
- _TransparentDepthPostpassEnable: 0
|
||||
- _TransparentDepthPrepassEnable: 0
|
||||
- _TransparentSortPriority: 0
|
||||
- _TransparentWritingMotionVec: 0
|
||||
- _TransparentZWrite: 0
|
||||
- _UV_Tiling: 1
|
||||
- _UseAlphaClipping: 1
|
||||
- _UseInstantColor: 0
|
||||
- _UsePom: 1
|
||||
- _UseShadowThreshold: 0
|
||||
- _UseWorldAlign: 0
|
||||
- _WorldAlignTile: 512
|
||||
- _ZTestDepthEqualForOpaque: 3
|
||||
- _ZTestGBuffer: 3
|
||||
- _ZTestTransparent: 4
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _AlbedoTint: {r: 0.8490566, g: 0.8490566, b: 0.8490566, a: 0}
|
||||
- _ChangeInstantColor: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _Dirt_Color: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _DoubleSidedConstants: {r: 1, g: 1, b: -1, a: 0}
|
||||
- _EdgeColor: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _EmissionColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _EmissiveColor: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _PomOffset: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _SecondColorMultiply: {r: 1, g: 1, b: 1, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
--- !u!114 &3696197708043593277
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 12
|
||||
hdPluginSubTargetMaterialVersions:
|
||||
m_Keys: []
|
||||
m_Values:
|
||||
@@ -1,15 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: bc11dc5e5105aa740aba891ea198d4f8
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 330726
|
||||
packageName: Orbital Base Environment
|
||||
packageVersion: 1.0
|
||||
assetPath: Assets/BefourStudios/Art/Materials/M_DecalsBathroomDarker.mat
|
||||
uploadId: 782779
|
||||
@@ -1,193 +0,0 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: M_DecalsComputer
|
||||
m_Shader: {fileID: -6465566751694194690, guid: bb2b9fd294686ac489b6c02ab0921e98,
|
||||
type: 3}
|
||||
m_ValidKeywords:
|
||||
- _ALPHATEST_ON
|
||||
- _DISABLE_SSR_TRANSPARENT
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 1
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: 2475
|
||||
stringTagMap:
|
||||
MotionVector: User
|
||||
RenderType: TransparentCutout
|
||||
disabledShaderPasses:
|
||||
- TransparentDepthPrepass
|
||||
- TransparentDepthPostpass
|
||||
- TransparentBackface
|
||||
- RayTracingPrepass
|
||||
- MOTIONVECTORS
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _AlphaClipping:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BaseTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000003648568229407236880, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MaskTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NormalTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000008715231071997529044, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ORMTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000007033487436870861467, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SecondTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _Texture2DAsset_50d8aa134ded4f3ba8216b2c6da2550a_Out_0:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000011191443335310782487, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _WorldAlignTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _A_Dirt: 0
|
||||
- _A_Edge: 0
|
||||
- _A_Mask: 0
|
||||
- _AddPrecomputedVelocity: 0
|
||||
- _AddSecondNormal: 0
|
||||
- _AlphaCutoffEnable: 1
|
||||
- _AlphaDstBlend: 0
|
||||
- _AlphaOpacity: 0.75
|
||||
- _AlphaSrcBlend: 1
|
||||
- _AlphaToMask: 0
|
||||
- _AlphaToMaskInspectorValue: 0
|
||||
- _AlphaTreshold: 0.45
|
||||
- _B_Dirt: 0
|
||||
- _B_Edge: 0
|
||||
- _B_Mask: 0
|
||||
- _BaseColorMultiply: 1
|
||||
- _BlendMode: 0
|
||||
- _ChangeInstantColor_1: 0
|
||||
- _ConservativeDepthOffsetEnable: 0
|
||||
- _CullMode: 2
|
||||
- _CullModeForward: 2
|
||||
- _DepthOffsetEnable: 0
|
||||
- _Dirt_Intensity: 0.5
|
||||
- _DoubleSidedEnable: 0
|
||||
- _DoubleSidedGIMode: 0
|
||||
- _DoubleSidedNormalMode: 2
|
||||
- _DstBlend: 0
|
||||
- _Edges_Intensity: 1
|
||||
- _Emissive: 0
|
||||
- _EmissiveIntensity: 1
|
||||
- _EnableBlendModePreserveSpecularLighting: 1
|
||||
- _EnableDirt: 0
|
||||
- _EnableEdge: 0
|
||||
- _EnableFogOnTransparent: 1
|
||||
- _G_Dirt: 0
|
||||
- _G_Edge: 0
|
||||
- _G_Mask: 0
|
||||
- _MaskAdjustment: 1
|
||||
- _MetallicIntensity: 1.42
|
||||
- _NormalIntensity: 1
|
||||
- _OpaqueCullMode: 2
|
||||
- _PomHeight: 2.22
|
||||
- _PomQuality: 32
|
||||
- _R_Dirt: 0
|
||||
- _R_Edge: 0
|
||||
- _R_Mask: 0
|
||||
- _RayTracing: 0
|
||||
- _ReceivesSSR: 1
|
||||
- _ReceivesSSRTransparent: 0
|
||||
- _RefractionModel: 0
|
||||
- _RenderQueueType: 1
|
||||
- _RequireSplitLighting: 0
|
||||
- _Saturation: 1
|
||||
- _SaturationWorldAlign: 1
|
||||
- _SecondNormalTile: 4.68
|
||||
- _SecondTextureColorMultiply: 1
|
||||
- _SmoothnessIntensity: 1.11
|
||||
- _SrcBlend: 1
|
||||
- _StencilRef: 0
|
||||
- _StencilRefDepth: 8
|
||||
- _StencilRefDistortionVec: 4
|
||||
- _StencilRefGBuffer: 10
|
||||
- _StencilRefMV: 40
|
||||
- _StencilWriteMask: 6
|
||||
- _StencilWriteMaskDepth: 8
|
||||
- _StencilWriteMaskDistortionVec: 4
|
||||
- _StencilWriteMaskGBuffer: 14
|
||||
- _StencilWriteMaskMV: 40
|
||||
- _SupportDecals: 1
|
||||
- _SurfaceType: 0
|
||||
- _TransparentBackfaceEnable: 0
|
||||
- _TransparentCullMode: 2
|
||||
- _TransparentDepthPostpassEnable: 0
|
||||
- _TransparentDepthPrepassEnable: 0
|
||||
- _TransparentSortPriority: 0
|
||||
- _TransparentWritingMotionVec: 0
|
||||
- _TransparentZWrite: 0
|
||||
- _UV_Tiling: 1
|
||||
- _UseAlphaClipping: 1
|
||||
- _UseInstantColor: 0
|
||||
- _UsePom: 1
|
||||
- _UseShadowThreshold: 0
|
||||
- _UseWorldAlign: 0
|
||||
- _WorldAlignTile: 512
|
||||
- _ZTestDepthEqualForOpaque: 3
|
||||
- _ZTestGBuffer: 3
|
||||
- _ZTestTransparent: 4
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _AlbedoTint: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _ChangeInstantColor: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _Dirt_Color: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _DoubleSidedConstants: {r: 1, g: 1, b: -1, a: 0}
|
||||
- _EdgeColor: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _EmissionColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _EmissiveColor: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _PomOffset: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _SecondColorMultiply: {r: 1, g: 1, b: 1, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
--- !u!114 &3696197708043593277
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 12
|
||||
hdPluginSubTargetMaterialVersions:
|
||||
m_Keys: []
|
||||
m_Values:
|
||||
@@ -1,15 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: d553ed4db94b7fc4093a8123d8b728cb
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 330726
|
||||
packageName: Orbital Base Environment
|
||||
packageVersion: 1.0
|
||||
assetPath: Assets/BefourStudios/Art/Materials/M_DecalsComputer.mat
|
||||
uploadId: 782779
|
||||
@@ -1,193 +0,0 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: M_DecalsDome
|
||||
m_Shader: {fileID: -6465566751694194690, guid: bb2b9fd294686ac489b6c02ab0921e98,
|
||||
type: 3}
|
||||
m_ValidKeywords:
|
||||
- _ALPHATEST_ON
|
||||
- _DISABLE_SSR_TRANSPARENT
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 1
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: 2475
|
||||
stringTagMap:
|
||||
MotionVector: User
|
||||
RenderType: TransparentCutout
|
||||
disabledShaderPasses:
|
||||
- TransparentDepthPrepass
|
||||
- TransparentDepthPostpass
|
||||
- TransparentBackface
|
||||
- RayTracingPrepass
|
||||
- MOTIONVECTORS
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _AlphaClipping:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BaseTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000003648568229407236880, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MaskTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NormalTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000008715231071997529044, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ORMTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000007033487436870861467, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SecondTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _Texture2DAsset_50d8aa134ded4f3ba8216b2c6da2550a_Out_0:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000011191443335310782487, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _WorldAlignTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _A_Dirt: 0
|
||||
- _A_Edge: 0
|
||||
- _A_Mask: 0
|
||||
- _AddPrecomputedVelocity: 0
|
||||
- _AddSecondNormal: 0
|
||||
- _AlphaCutoffEnable: 1
|
||||
- _AlphaDstBlend: 0
|
||||
- _AlphaOpacity: 0.75
|
||||
- _AlphaSrcBlend: 1
|
||||
- _AlphaToMask: 0
|
||||
- _AlphaToMaskInspectorValue: 0
|
||||
- _AlphaTreshold: 0.45
|
||||
- _B_Dirt: 0
|
||||
- _B_Edge: 0
|
||||
- _B_Mask: 0
|
||||
- _BaseColorMultiply: 1
|
||||
- _BlendMode: 0
|
||||
- _ChangeInstantColor_1: 0
|
||||
- _ConservativeDepthOffsetEnable: 0
|
||||
- _CullMode: 2
|
||||
- _CullModeForward: 2
|
||||
- _DepthOffsetEnable: 0
|
||||
- _Dirt_Intensity: 0.5
|
||||
- _DoubleSidedEnable: 0
|
||||
- _DoubleSidedGIMode: 0
|
||||
- _DoubleSidedNormalMode: 2
|
||||
- _DstBlend: 0
|
||||
- _Edges_Intensity: 1
|
||||
- _Emissive: 0
|
||||
- _EmissiveIntensity: 1
|
||||
- _EnableBlendModePreserveSpecularLighting: 1
|
||||
- _EnableDirt: 0
|
||||
- _EnableEdge: 0
|
||||
- _EnableFogOnTransparent: 1
|
||||
- _G_Dirt: 0
|
||||
- _G_Edge: 0
|
||||
- _G_Mask: 0
|
||||
- _MaskAdjustment: 1
|
||||
- _MetallicIntensity: 1.42
|
||||
- _NormalIntensity: 1
|
||||
- _OpaqueCullMode: 2
|
||||
- _PomHeight: 2.22
|
||||
- _PomQuality: 32
|
||||
- _R_Dirt: 0
|
||||
- _R_Edge: 0
|
||||
- _R_Mask: 0
|
||||
- _RayTracing: 0
|
||||
- _ReceivesSSR: 1
|
||||
- _ReceivesSSRTransparent: 0
|
||||
- _RefractionModel: 0
|
||||
- _RenderQueueType: 1
|
||||
- _RequireSplitLighting: 0
|
||||
- _Saturation: 1
|
||||
- _SaturationWorldAlign: 1
|
||||
- _SecondNormalTile: 4.68
|
||||
- _SecondTextureColorMultiply: 1
|
||||
- _SmoothnessIntensity: 1.11
|
||||
- _SrcBlend: 1
|
||||
- _StencilRef: 0
|
||||
- _StencilRefDepth: 8
|
||||
- _StencilRefDistortionVec: 4
|
||||
- _StencilRefGBuffer: 10
|
||||
- _StencilRefMV: 40
|
||||
- _StencilWriteMask: 6
|
||||
- _StencilWriteMaskDepth: 8
|
||||
- _StencilWriteMaskDistortionVec: 4
|
||||
- _StencilWriteMaskGBuffer: 14
|
||||
- _StencilWriteMaskMV: 40
|
||||
- _SupportDecals: 1
|
||||
- _SurfaceType: 0
|
||||
- _TransparentBackfaceEnable: 0
|
||||
- _TransparentCullMode: 2
|
||||
- _TransparentDepthPostpassEnable: 0
|
||||
- _TransparentDepthPrepassEnable: 0
|
||||
- _TransparentSortPriority: 0
|
||||
- _TransparentWritingMotionVec: 0
|
||||
- _TransparentZWrite: 0
|
||||
- _UV_Tiling: 1
|
||||
- _UseAlphaClipping: 1
|
||||
- _UseInstantColor: 0
|
||||
- _UsePom: 1
|
||||
- _UseShadowThreshold: 0
|
||||
- _UseWorldAlign: 0
|
||||
- _WorldAlignTile: 512
|
||||
- _ZTestDepthEqualForOpaque: 3
|
||||
- _ZTestGBuffer: 3
|
||||
- _ZTestTransparent: 4
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _AlbedoTint: {r: 0.8490566, g: 0.8490566, b: 0.8490566, a: 0}
|
||||
- _ChangeInstantColor: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _Dirt_Color: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _DoubleSidedConstants: {r: 1, g: 1, b: -1, a: 0}
|
||||
- _EdgeColor: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _EmissionColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _EmissiveColor: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _PomOffset: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _SecondColorMultiply: {r: 1, g: 1, b: 1, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
--- !u!114 &3696197708043593277
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 12
|
||||
hdPluginSubTargetMaterialVersions:
|
||||
m_Keys: []
|
||||
m_Values:
|
||||
@@ -1,15 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 1077d8a28d6f31f4e8a7511d1ce17a7a
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 330726
|
||||
packageName: Orbital Base Environment
|
||||
packageVersion: 1.0
|
||||
assetPath: Assets/BefourStudios/Art/Materials/M_DecalsDome.mat
|
||||
uploadId: 782779
|
||||
@@ -1,193 +0,0 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: M_DecalsDomeBarriers
|
||||
m_Shader: {fileID: -6465566751694194690, guid: bb2b9fd294686ac489b6c02ab0921e98,
|
||||
type: 3}
|
||||
m_ValidKeywords:
|
||||
- _ALPHATEST_ON
|
||||
- _DISABLE_SSR_TRANSPARENT
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 1
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: 2475
|
||||
stringTagMap:
|
||||
MotionVector: User
|
||||
RenderType: TransparentCutout
|
||||
disabledShaderPasses:
|
||||
- TransparentDepthPrepass
|
||||
- TransparentDepthPostpass
|
||||
- TransparentBackface
|
||||
- RayTracingPrepass
|
||||
- MOTIONVECTORS
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _AlphaClipping:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BaseTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000003648568229407236880, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MaskTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NormalTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000008715231071997529044, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ORMTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000007033487436870861467, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SecondTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _Texture2DAsset_50d8aa134ded4f3ba8216b2c6da2550a_Out_0:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000011191443335310782487, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _WorldAlignTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _A_Dirt: 0
|
||||
- _A_Edge: 0
|
||||
- _A_Mask: 0
|
||||
- _AddPrecomputedVelocity: 0
|
||||
- _AddSecondNormal: 0
|
||||
- _AlphaCutoffEnable: 1
|
||||
- _AlphaDstBlend: 0
|
||||
- _AlphaOpacity: 0.75
|
||||
- _AlphaSrcBlend: 1
|
||||
- _AlphaToMask: 0
|
||||
- _AlphaToMaskInspectorValue: 0
|
||||
- _AlphaTreshold: 0.45
|
||||
- _B_Dirt: 0
|
||||
- _B_Edge: 0
|
||||
- _B_Mask: 0
|
||||
- _BaseColorMultiply: 1
|
||||
- _BlendMode: 0
|
||||
- _ChangeInstantColor_1: 0
|
||||
- _ConservativeDepthOffsetEnable: 0
|
||||
- _CullMode: 2
|
||||
- _CullModeForward: 2
|
||||
- _DepthOffsetEnable: 0
|
||||
- _Dirt_Intensity: 0.5
|
||||
- _DoubleSidedEnable: 0
|
||||
- _DoubleSidedGIMode: 0
|
||||
- _DoubleSidedNormalMode: 2
|
||||
- _DstBlend: 0
|
||||
- _Edges_Intensity: 1
|
||||
- _Emissive: 0
|
||||
- _EmissiveIntensity: 1
|
||||
- _EnableBlendModePreserveSpecularLighting: 1
|
||||
- _EnableDirt: 0
|
||||
- _EnableEdge: 0
|
||||
- _EnableFogOnTransparent: 1
|
||||
- _G_Dirt: 0
|
||||
- _G_Edge: 0
|
||||
- _G_Mask: 0
|
||||
- _MaskAdjustment: 1
|
||||
- _MetallicIntensity: 1.04
|
||||
- _NormalIntensity: 1
|
||||
- _OpaqueCullMode: 2
|
||||
- _PomHeight: 2.22
|
||||
- _PomQuality: 32
|
||||
- _R_Dirt: 0
|
||||
- _R_Edge: 0
|
||||
- _R_Mask: 0
|
||||
- _RayTracing: 0
|
||||
- _ReceivesSSR: 1
|
||||
- _ReceivesSSRTransparent: 0
|
||||
- _RefractionModel: 0
|
||||
- _RenderQueueType: 1
|
||||
- _RequireSplitLighting: 0
|
||||
- _Saturation: 1
|
||||
- _SaturationWorldAlign: 1
|
||||
- _SecondNormalTile: 4.68
|
||||
- _SecondTextureColorMultiply: 1
|
||||
- _SmoothnessIntensity: 1.11
|
||||
- _SrcBlend: 1
|
||||
- _StencilRef: 0
|
||||
- _StencilRefDepth: 8
|
||||
- _StencilRefDistortionVec: 4
|
||||
- _StencilRefGBuffer: 10
|
||||
- _StencilRefMV: 40
|
||||
- _StencilWriteMask: 6
|
||||
- _StencilWriteMaskDepth: 8
|
||||
- _StencilWriteMaskDistortionVec: 4
|
||||
- _StencilWriteMaskGBuffer: 14
|
||||
- _StencilWriteMaskMV: 40
|
||||
- _SupportDecals: 1
|
||||
- _SurfaceType: 0
|
||||
- _TransparentBackfaceEnable: 0
|
||||
- _TransparentCullMode: 2
|
||||
- _TransparentDepthPostpassEnable: 0
|
||||
- _TransparentDepthPrepassEnable: 0
|
||||
- _TransparentSortPriority: 0
|
||||
- _TransparentWritingMotionVec: 0
|
||||
- _TransparentZWrite: 0
|
||||
- _UV_Tiling: 1
|
||||
- _UseAlphaClipping: 1
|
||||
- _UseInstantColor: 0
|
||||
- _UsePom: 1
|
||||
- _UseShadowThreshold: 0
|
||||
- _UseWorldAlign: 0
|
||||
- _WorldAlignTile: 512
|
||||
- _ZTestDepthEqualForOpaque: 3
|
||||
- _ZTestGBuffer: 3
|
||||
- _ZTestTransparent: 4
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _AlbedoTint: {r: 0.8490566, g: 0.8490566, b: 0.8490566, a: 0}
|
||||
- _ChangeInstantColor: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _Dirt_Color: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _DoubleSidedConstants: {r: 1, g: 1, b: -1, a: 0}
|
||||
- _EdgeColor: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _EmissionColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _EmissiveColor: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _PomOffset: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _SecondColorMultiply: {r: 1, g: 1, b: 1, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
--- !u!114 &3696197708043593277
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 12
|
||||
hdPluginSubTargetMaterialVersions:
|
||||
m_Keys: []
|
||||
m_Values:
|
||||
@@ -1,15 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 5ab37c2faba8ae34d87b96eefd81dc0f
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 330726
|
||||
packageName: Orbital Base Environment
|
||||
packageVersion: 1.0
|
||||
assetPath: Assets/BefourStudios/Art/Materials/M_DecalsDomeBarriers.mat
|
||||
uploadId: 782779
|
||||
@@ -1,193 +0,0 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: M_DecalsStorage
|
||||
m_Shader: {fileID: -6465566751694194690, guid: bb2b9fd294686ac489b6c02ab0921e98,
|
||||
type: 3}
|
||||
m_ValidKeywords:
|
||||
- _ALPHATEST_ON
|
||||
- _DISABLE_SSR_TRANSPARENT
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 1
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: 2475
|
||||
stringTagMap:
|
||||
MotionVector: User
|
||||
RenderType: TransparentCutout
|
||||
disabledShaderPasses:
|
||||
- TransparentDepthPrepass
|
||||
- TransparentDepthPostpass
|
||||
- TransparentBackface
|
||||
- RayTracingPrepass
|
||||
- MOTIONVECTORS
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _AlphaClipping:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BaseTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000003648568229407236880, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MaskTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _NormalTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000008715231071997529044, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ORMTexture:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000007033487436870861467, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SecondTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _Texture2DAsset_50d8aa134ded4f3ba8216b2c6da2550a_Out_0:
|
||||
m_Texture: {fileID: 2800000, guid: abc00000000011191443335310782487, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _WorldAlignTexture:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _A_Dirt: 0
|
||||
- _A_Edge: 0
|
||||
- _A_Mask: 0
|
||||
- _AddPrecomputedVelocity: 0
|
||||
- _AddSecondNormal: 0
|
||||
- _AlphaCutoffEnable: 1
|
||||
- _AlphaDstBlend: 0
|
||||
- _AlphaOpacity: 0.75
|
||||
- _AlphaSrcBlend: 1
|
||||
- _AlphaToMask: 0
|
||||
- _AlphaToMaskInspectorValue: 0
|
||||
- _AlphaTreshold: 0.45
|
||||
- _B_Dirt: 0
|
||||
- _B_Edge: 0
|
||||
- _B_Mask: 0
|
||||
- _BaseColorMultiply: 1
|
||||
- _BlendMode: 0
|
||||
- _ChangeInstantColor_1: 0
|
||||
- _ConservativeDepthOffsetEnable: 0
|
||||
- _CullMode: 2
|
||||
- _CullModeForward: 2
|
||||
- _DepthOffsetEnable: 0
|
||||
- _Dirt_Intensity: 0.5
|
||||
- _DoubleSidedEnable: 0
|
||||
- _DoubleSidedGIMode: 0
|
||||
- _DoubleSidedNormalMode: 2
|
||||
- _DstBlend: 0
|
||||
- _Edges_Intensity: 1
|
||||
- _Emissive: 0
|
||||
- _EmissiveIntensity: 1
|
||||
- _EnableBlendModePreserveSpecularLighting: 1
|
||||
- _EnableDirt: 0
|
||||
- _EnableEdge: 0
|
||||
- _EnableFogOnTransparent: 1
|
||||
- _G_Dirt: 0
|
||||
- _G_Edge: 0
|
||||
- _G_Mask: 0
|
||||
- _MaskAdjustment: 1
|
||||
- _MetallicIntensity: 1.42
|
||||
- _NormalIntensity: 1
|
||||
- _OpaqueCullMode: 2
|
||||
- _PomHeight: 2.22
|
||||
- _PomQuality: 32
|
||||
- _R_Dirt: 0
|
||||
- _R_Edge: 0
|
||||
- _R_Mask: 0
|
||||
- _RayTracing: 0
|
||||
- _ReceivesSSR: 1
|
||||
- _ReceivesSSRTransparent: 0
|
||||
- _RefractionModel: 0
|
||||
- _RenderQueueType: 1
|
||||
- _RequireSplitLighting: 0
|
||||
- _Saturation: 1
|
||||
- _SaturationWorldAlign: 1
|
||||
- _SecondNormalTile: 4.68
|
||||
- _SecondTextureColorMultiply: 1
|
||||
- _SmoothnessIntensity: 1.11
|
||||
- _SrcBlend: 1
|
||||
- _StencilRef: 0
|
||||
- _StencilRefDepth: 8
|
||||
- _StencilRefDistortionVec: 4
|
||||
- _StencilRefGBuffer: 10
|
||||
- _StencilRefMV: 40
|
||||
- _StencilWriteMask: 6
|
||||
- _StencilWriteMaskDepth: 8
|
||||
- _StencilWriteMaskDistortionVec: 4
|
||||
- _StencilWriteMaskGBuffer: 14
|
||||
- _StencilWriteMaskMV: 40
|
||||
- _SupportDecals: 1
|
||||
- _SurfaceType: 0
|
||||
- _TransparentBackfaceEnable: 0
|
||||
- _TransparentCullMode: 2
|
||||
- _TransparentDepthPostpassEnable: 0
|
||||
- _TransparentDepthPrepassEnable: 0
|
||||
- _TransparentSortPriority: 0
|
||||
- _TransparentWritingMotionVec: 0
|
||||
- _TransparentZWrite: 0
|
||||
- _UV_Tiling: 1
|
||||
- _UseAlphaClipping: 1
|
||||
- _UseInstantColor: 0
|
||||
- _UsePom: 1
|
||||
- _UseShadowThreshold: 0
|
||||
- _UseWorldAlign: 0
|
||||
- _WorldAlignTile: 512
|
||||
- _ZTestDepthEqualForOpaque: 3
|
||||
- _ZTestGBuffer: 3
|
||||
- _ZTestTransparent: 4
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _AlbedoTint: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _ChangeInstantColor: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _Dirt_Color: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _DoubleSidedConstants: {r: 1, g: 1, b: -1, a: 0}
|
||||
- _EdgeColor: {r: 0.30196077, g: 0.25098038, b: 0.18823525, a: 1}
|
||||
- _EmissionColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _EmissiveColor: {r: 1, g: 1, b: 1, a: 0}
|
||||
- _PomOffset: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _SecondColorMultiply: {r: 1, g: 1, b: 1, a: 0}
|
||||
m_BuildTextureStacks: []
|
||||
--- !u!114 &3696197708043593277
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 12
|
||||
hdPluginSubTargetMaterialVersions:
|
||||
m_Keys: []
|
||||
m_Values:
|
||||
@@ -1,15 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 558a6484f636e394ca0fa956a84820f9
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 330726
|
||||
packageName: Orbital Base Environment
|
||||
packageVersion: 1.0
|
||||
assetPath: Assets/BefourStudios/Art/Materials/M_DecalsStorage.mat
|
||||
uploadId: 782779
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user