Advertisement
pedroadmn

Sensor Orientation Icone

Apr 12th, 2016
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MXML 0.72 KB | None | 0 0
  1. <!-- Compass Icon Example-->
  2. <!-- http://en.miui.com/thread-116561-1-1.html -->
  3.  
  4. <?xml version="1.0" encoding="utf-8"?>
  5. <!-- Compass By S-DeZignX -->
  6. <Icon version="1" frameRate="0" width="192" height="192" screenWidth="1080" useVariableUpdater="">
  7.     <VariableBinders>
  8.         <SensorBinder type="orientation">
  9.             <Variable name="direction"/>
  10.         </SensorBinder>
  11.     </VariableBinders>
  12.  
  13.     <Group>
  14.         <Image x="96" y="96" align="center" alignV="center" src="bg.png" />
  15.         <Image x="96" y="96" align="center" alignV="center" pivotX="96" pivotY="96" rotation="-#direction" src="arrow.png" />
  16.         <Image x="96" y="96" align="center" alignV="center" pivotX="96" src="thumb.png" />
  17.     </Group>    
  18. </Icon>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement