Advertisement
Darker666

My generator definitions

Dec 7th, 2014
248
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.96 KB | None | 0 0
  1. <?xml version="1.0" encoding="windows-1250"?>
  2. <Stripes>
  3.   <!-- Root of generator. Does nothing. Needs EXACTLY ONE entry inside
  4.         <Generator>
  5.       Valid generator entries:
  6.         <loop [shuffled="true"]> - can take inner Generators and Stripes
  7.         <random min="integer" max="integer"> - picks [min-max] entries (Generator or Stripe)    
  8.        
  9.       Stripe definitions that can be added in generators THAT ALLOW IT
  10.       Some generators only support LIMITED NUMBER of stripes. Rest will be ommited
  11.         <stripe h="min,max" s="min,max" l="min,max" width="min,max">
  12.  
  13.  -->
  14.   <Generator>
  15.      <!--Just wild random colors -->
  16.      <stripe h="0,360" s="255,255" l="50,80" width="10,20" />
  17.   </Generator>
  18.   <Generator>
  19.      <!--Color and black separator -->
  20.      <loop>
  21.        <stripe h="0,360" s="255,255" l="50,80" width="10,20" />
  22.        <stripe h="0,360" s="255,255" l="0,0" width="10,20" />
  23.      </loop>
  24.   </Generator>
  25. </Stripes>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement