Procházet zdrojové kódy

Fixed dependencies XML file to work with the correct path based wildcard resolving logic.

Signed-off-by: AMZN-stankowi <[email protected]>
AMZN-stankowi před 2 roky
rodič
revize
e0702f072b
1 změnil soubory, kde provedl 16 přidání a 0 odebrání
  1. 16 0
      MultiplayerSample_Dependencies.xml

+ 16 - 0
MultiplayerSample_Dependencies.xml

@@ -1,6 +1,22 @@
 <EngineDependencies versionnumber="1.0.0">
     <Dependency path="*.azshadervariant*" optional="false" /> <!-- The wildcard includes azshadervarianttree assets too -->
+    <!-- The dependency system uses glob style wildcards. This means the wildcards don't include directory markers. -->
+    <!-- This is only necessary for systems that do not output product dependencies. Once this system supports product dependencies, this can be removed. -->
     <Dependency path="popcornfx/*.streamingimage" optional="false" />
+    <Dependency path="popcornfx/content/spacesoldiersweapons/textures/*.streamingimage" optional="false" />
+    <Dependency path="popcornfx/library/persistantstudios/weapons/alien/*.streamingimage" optional="false" />
+    <Dependency path="popcornfx/meshes/bubblegun/*.streamingimage" optional="false" />
+    <Dependency path="popcornfx/textures/*.streamingimage" optional="false" />
+    <Dependency path="popcornfx/textures/*/*.streamingimage" optional="false" />
+    <Dependency path="popcornfx/textures/malfunctionningshieldgenerator/mshieldgen/*.streamingimage" optional="false" />
     <Dependency path="popcornfx/*.pkfx" optional="false" />
+    <Dependency path="popcornfx/particles/*.pkfx" optional="false" />
+    <Dependency path="popcornfx/particles/*/*.pkfx" optional="false" />
+    <Dependency path="popcornfx/library/popcornfxcore/*.pkfx" optional="false" />
+    <Dependency path="popcornfx/library/popcornfxcore/templates/*.pkfx" optional="false" />
     <Dependency path="popcornfx/*.azmodel" optional="false" />
+    <Dependency path="popcornfx/meshes/*.azmodel" optional="false" />
+    <Dependency path="popcornfx/meshes/*/*.azmodel" optional="false" />
+    <Dependency path="popcornfx/content/spacesoldiersweapons/meshes/*.azmodel" optional="false" />
+    <Dependency path="popcornfx/library/persistantstudios/weapons/alien/*.azmodel" optional="false" />
 </EngineDependencies>