what done?
BIN
particlelab/src/main/res/drawable/background.png
Normal file
After Width: | Height: | Size: 89 KiB |
BIN
particlelab/src/main/res/drawable/ball.png
Normal file
After Width: | Height: | Size: 8.7 KiB |
BIN
particlelab/src/main/res/drawable/blueparticle.png
Normal file
After Width: | Height: | Size: 701 B |
BIN
particlelab/src/main/res/drawable/bomb.png
Normal file
After Width: | Height: | Size: 132 KiB |
BIN
particlelab/src/main/res/drawable/bombbutton.png
Normal file
After Width: | Height: | Size: 38 KiB |
30
particlelab/src/main/res/drawable/custom_button.xml
Normal file
@@ -0,0 +1,30 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:tools="http://schemas.android.com/tools" xmlns:android="http://schemas.android.com/apk/res/android" tools:context=".main.GameActivity">
|
||||
<item android:state_pressed="true" android:state_enabled="true">
|
||||
<shape>
|
||||
<corners android:radius="20dp" />
|
||||
<padding android:bottom="10dp" android:left="10dp" android:right="10dp" android:top="10dp" />
|
||||
<stroke android:width="1dp" android:color="#992f2f" />
|
||||
|
||||
<solid android:color="#ef4444" />
|
||||
</shape>
|
||||
</item>
|
||||
<item android:state_pressed="false" android:state_enabled="true">
|
||||
<shape>
|
||||
<corners android:radius="20dp" />
|
||||
<padding android:bottom="10dp" android:left="10dp" android:right="10dp" android:top="10dp" />
|
||||
<stroke android:width="1dp" android:color="#992f2f" />
|
||||
|
||||
<gradient android:angle="270" android:endColor="#992f2f" android:startColor="#ef4444" />
|
||||
</shape>
|
||||
</item>
|
||||
<item android:state_enabled="false">
|
||||
<shape>
|
||||
<corners android:radius="20dp" />
|
||||
<padding android:bottom="10dp" android:left="10dp" android:right="10dp" android:top="10dp" />
|
||||
<stroke android:width="1dp" android:color="#992f2f" />
|
||||
|
||||
<gradient android:angle="270" android:endColor="#a15d5d" android:startColor="#b73d3d" />
|
||||
</shape>
|
||||
</item>
|
||||
</selector>
|
BIN
particlelab/src/main/res/drawable/emptybutton.png
Normal file
After Width: | Height: | Size: 9.5 KiB |
BIN
particlelab/src/main/res/drawable/goal.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
particlelab/src/main/res/drawable/grasslands_preview.png
Normal file
After Width: | Height: | Size: 89 KiB |
24
particlelab/src/main/res/drawable/levelbutton_background.xml
Normal file
@@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<corners android:radius="47dp" />
|
||||
<gradient
|
||||
android:centerColor="#669dd4"
|
||||
android:centerX="50%"
|
||||
android:centerY="50%"
|
||||
android:endColor="#F7F9FF"
|
||||
android:gradientRadius="300"
|
||||
android:startColor="#a07bbc"
|
||||
android:type="radial" />
|
||||
<padding
|
||||
android:bottom="0dp"
|
||||
android:left="0dp"
|
||||
android:right="0dp"
|
||||
android:top="20dp" />
|
||||
<size
|
||||
android:width="200dp"
|
||||
android:height="150dp" />
|
||||
<stroke
|
||||
android:width="10dp"
|
||||
android:color="#b11a1a" />
|
||||
</shape>
|
BIN
particlelab/src/main/res/drawable/levelupbackground.png
Normal file
After Width: | Height: | Size: 899 B |
BIN
particlelab/src/main/res/drawable/lock.png
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
particlelab/src/main/res/drawable/lockedbutton.png
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
particlelab/src/main/res/drawable/magnet.png
Normal file
After Width: | Height: | Size: 46 KiB |
BIN
particlelab/src/main/res/drawable/magnetbutton.png
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
particlelab/src/main/res/drawable/menu_background.png
Normal file
After Width: | Height: | Size: 154 KiB |
BIN
particlelab/src/main/res/drawable/obstacle.png
Normal file
After Width: | Height: | Size: 54 KiB |
BIN
particlelab/src/main/res/drawable/pausebutton.png
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
particlelab/src/main/res/drawable/playerarrow.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
particlelab/src/main/res/drawable/purple.png
Normal file
After Width: | Height: | Size: 79 B |
BIN
particlelab/src/main/res/drawable/ramp.png
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
particlelab/src/main/res/drawable/rampbutton.png
Normal file
After Width: | Height: | Size: 48 KiB |
BIN
particlelab/src/main/res/drawable/redparticle.png
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
particlelab/src/main/res/drawable/shortmenubackground.png
Normal file
After Width: | Height: | Size: 923 B |
BIN
particlelab/src/main/res/drawable/sound_off.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
particlelab/src/main/res/drawable/sound_on.png
Normal file
After Width: | Height: | Size: 2.8 KiB |
10
particlelab/src/main/res/drawable/sound_toggle.xml
Normal file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<item android:state_checked="false"
|
||||
android:drawable="@drawable/sound_off" />
|
||||
|
||||
<item android:state_checked="true"
|
||||
android:drawable="@drawable/sound_on" />
|
||||
|
||||
</selector>
|
BIN
particlelab/src/main/res/drawable/splitter.png
Normal file
After Width: | Height: | Size: 459 B |
BIN
particlelab/src/main/res/drawable/spring.png
Normal file
After Width: | Height: | Size: 61 KiB |
BIN
particlelab/src/main/res/drawable/springbutton.png
Normal file
After Width: | Height: | Size: 80 KiB |
BIN
particlelab/src/main/res/drawable/star.png
Normal file
After Width: | Height: | Size: 11 KiB |
BIN
particlelab/src/main/res/drawable/stars_0.png
Normal file
After Width: | Height: | Size: 4.0 KiB |
BIN
particlelab/src/main/res/drawable/stars_1.png
Normal file
After Width: | Height: | Size: 5.0 KiB |
BIN
particlelab/src/main/res/drawable/stars_2.png
Normal file
After Width: | Height: | Size: 5.0 KiB |
BIN
particlelab/src/main/res/drawable/stars_3.png
Normal file
After Width: | Height: | Size: 4.2 KiB |
BIN
particlelab/src/main/res/drawable/terrain.png
Normal file
After Width: | Height: | Size: 34 KiB |
BIN
particlelab/src/main/res/drawable/test.png
Normal file
After Width: | Height: | Size: 22 KiB |
15
particlelab/src/main/res/drawable/tool_slot_background.xml
Normal file
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<corners android:radius="3dp" />
|
||||
<solid
|
||||
android:color="#715f5f"/>
|
||||
<padding
|
||||
android:bottom="2dp"
|
||||
android:left="2dp"
|
||||
android:right="2dp"
|
||||
android:top="2dp" />
|
||||
<stroke
|
||||
android:width="2dp"
|
||||
android:color="#635e5e" />
|
||||
</shape>
|
21
particlelab/src/main/res/drawable/toolprogressbarlayers.xml
Normal file
@@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:id="@android:id/background">
|
||||
<shape android:shape="rectangle">
|
||||
<solid android:color="#00fff700" />
|
||||
<corners android:radius="200dp" />
|
||||
</shape>
|
||||
</item>
|
||||
|
||||
<item android:id="@android:id/progress">
|
||||
<clip android:gravity="right">
|
||||
<shape android:shape="rectangle">
|
||||
<gradient
|
||||
android:angle="45"
|
||||
android:endColor="#a06c6c6c"
|
||||
android:startColor="#a0ababab" />
|
||||
<corners android:radius="200dp" />
|
||||
</shape>
|
||||
</clip>
|
||||
</item>
|
||||
</layer-list>
|
@@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<corners android:radius="30dp" />
|
||||
<gradient
|
||||
android:centerX="50%"
|
||||
android:centerY="50%"
|
||||
android:endColor="#82f7f9ff"
|
||||
android:startColor="#820077ff"
|
||||
android:angle="45"
|
||||
android:type="linear" />
|
||||
<padding
|
||||
android:bottom="5dp"
|
||||
android:left="10dp"
|
||||
android:right="15dp"
|
||||
android:top="5dp" />
|
||||
<stroke
|
||||
android:width="2dp"
|
||||
android:color="#7826adbc" />
|
||||
</shape>
|
BIN
particlelab/src/main/res/drawable/unlocked.png
Normal file
After Width: | Height: | Size: 9.1 KiB |
BIN
particlelab/src/main/res/drawable/unlockedbutton.png
Normal file
After Width: | Height: | Size: 17 KiB |
20
particlelab/src/main/res/drawable/worldbutton_background.xml
Normal file
@@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<corners android:radius="20dp" />
|
||||
<gradient
|
||||
android:centerX="0%"
|
||||
android:centerY="0%"
|
||||
android:endColor="#ff71a5"
|
||||
android:startColor="#d7fd00"
|
||||
android:angle="315"
|
||||
android:type="linear" />
|
||||
<padding
|
||||
android:bottom="10dp"
|
||||
android:left="0dp"
|
||||
android:right="0dp"
|
||||
android:top="10dp" />
|
||||
<stroke
|
||||
android:width="4dp"
|
||||
android:color="#74ff71d0" />
|
||||
</shape>
|
BIN
particlelab/src/main/res/drawable/yellowparticle.png
Normal file
After Width: | Height: | Size: 1.9 KiB |