Skip to content

Commit 6526123

Browse files
author
davidkline-ms
committed
re-move the scene system resources to a top level mrtk folder
1 parent 9b3c92c commit 6526123

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

Assets/MRTK/Services/SceneSystem/Scenes/DefaultLightingScene.unity renamed to Assets/MRTK/SceneSystemResources/DefaultLightingScene.unity

File renamed without changes.

Assets/MRTK/Services/SceneSystem/Scenes/DefaultLightingScene.unity.meta renamed to Assets/MRTK/SceneSystemResources/DefaultLightingScene.unity.meta

File renamed without changes.

Assets/MRTK/Services/SceneSystem/Scenes/DefaultManagerScene.unity renamed to Assets/MRTK/SceneSystemResources/DefaultManagerScene.unity

File renamed without changes.

Assets/MRTK/Services/SceneSystem/Scenes/DefaultManagerScene.unity.meta renamed to Assets/MRTK/SceneSystemResources/DefaultManagerScene.unity.meta

File renamed without changes.

scripts/packaging/foundationpreupm.ps1

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ if (-not (Test-Path -Path $samplesFolder)) {
2020
New-Item $samplesFolder -ItemType Directory | Out-Null
2121
}
2222

23-
# Copy the scene system's default scenes to Samples~/SceneSystemScenes
24-
Copy-Item -Path "$PackageRoot/Services/SceneSystem/Scenes" -Destination "$samplesFolder/SceneSystemScenes" -Recurse -Force
23+
# Copy the scene system's default scenes to Samples~
24+
Copy-Item -Path "$PackageRoot/SceneSystemResources" -Destination "$samplesFolder/SceneSystemResources" -Recurse -Force
2525

2626
# Create the samples data for the package.json file
2727
$samples = "`"samples`": ["
2828
$samples = $samples + "`n {`n"
29-
$samples = $samples + " `"displayName`": `"Scene System Scenes`",`n"
30-
$samples = $samples + " `"description`": `"Default scenes used by the MRTK Scene System`",`n"
31-
$samples = $samples + " `"path`": `"Samples~/SceneSystemScenes`"`n"
29+
$samples = $samples + " `"displayName`": `"Scene System Resources`",`n"
30+
$samples = $samples + " `"description`": `"Resources used by the MRTK Scene System`",`n"
31+
$samples = $samples + " `"path`": `"Samples~/SceneSystemResources`"`n"
3232
$samples = $samples + " }"
3333
$samples = $samples + "`n ]"
3434

0 commit comments

Comments
 (0)