Remove particles examples launcher
authorAlan Alpert <alan.alpert@nokia.com>
Wed, 6 Jun 2012 10:35:51 +0000 (20:35 +1000)
committerQt by Nokia <qt-info@nokia.com>
Fri, 8 Jun 2012 08:12:21 +0000 (10:12 +0200)
New examples guidelines include its own launcher scheme.

Change-Id: I93f2ef40ba2b9344e9e3074ef31d7b6d2aed72b1
Reviewed-by: Yunqiao Yin <charles.yin@nokia.com>
41 files changed:
examples/particles/exampleslauncher/content/Button.qml [deleted file]
examples/particles/exampleslauncher/content/Shell.qml [deleted file]
examples/particles/exampleslauncher/content/launcher.js [deleted file]
examples/particles/exampleslauncher/exampleslauncher.qml [deleted file]
examples/particles/images/launcherIcons/allatonce.png [deleted file]
examples/particles/images/launcherIcons/attractor.png [deleted file]
examples/particles/images/launcherIcons/blurparticles.png [deleted file]
examples/particles/images/launcherIcons/close.png [deleted file]
examples/particles/images/launcherIcons/colortable.png [deleted file]
examples/particles/images/launcherIcons/customaffector.png [deleted file]
examples/particles/images/launcherIcons/customemitter.png [deleted file]
examples/particles/images/launcherIcons/deformation.png [deleted file]
examples/particles/images/launcherIcons/delegates.png [deleted file]
examples/particles/images/launcherIcons/dynamicemitters.png [deleted file]
examples/particles/images/launcherIcons/emitmask.png [deleted file]
examples/particles/images/launcherIcons/flickr.png [deleted file]
examples/particles/images/launcherIcons/fragmentshader.png [deleted file]
examples/particles/images/launcherIcons/gridsplosion.png [deleted file]
examples/particles/images/launcherIcons/groupgoal.png [deleted file]
examples/particles/images/launcherIcons/imagecolors.png [deleted file]
examples/particles/images/launcherIcons/list.png [deleted file]
examples/particles/images/launcherIcons/maximumemitted.png [deleted file]
examples/particles/images/launcherIcons/multiplepainters.png [deleted file]
examples/particles/images/launcherIcons/package.png [deleted file]
examples/particles/images/launcherIcons/particleview.png [deleted file]
examples/particles/images/launcherIcons/plasmapatrol.png [deleted file]
examples/particles/images/launcherIcons/remove.png [deleted file]
examples/particles/images/launcherIcons/rotation.png [deleted file]
examples/particles/images/launcherIcons/samegame.png [deleted file]
examples/particles/images/launcherIcons/shapeanddirection.png [deleted file]
examples/particles/images/launcherIcons/spaceexplorer.png [deleted file]
examples/particles/images/launcherIcons/spritegoal.png [deleted file]
examples/particles/images/launcherIcons/sprites.png [deleted file]
examples/particles/images/launcherIcons/spritevariedparticles.png [deleted file]
examples/particles/images/launcherIcons/startstop.png [deleted file]
examples/particles/images/launcherIcons/timedgroupchanges.png [deleted file]
examples/particles/images/launcherIcons/trailemitter.png [deleted file]
examples/particles/images/launcherIcons/trails.png [deleted file]
examples/particles/images/launcherIcons/turbulence.png [deleted file]
examples/particles/images/launcherIcons/velocityfrommotion.png [deleted file]
examples/particles/images/launcherIcons/wander.png [deleted file]

diff --git a/examples/particles/exampleslauncher/content/Button.qml b/examples/particles/exampleslauncher/content/Button.qml
deleted file mode 100644 (file)
index e51a9be..0000000
+++ /dev/null
@@ -1,73 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
-** Contact: http://www.qt-project.org/
-**
-** This file is part of the examples of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:BSD$
-** You may use this file under the terms of the BSD license as follows:
-**
-** "Redistribution and use in source and binary forms, with or without
-** modification, are permitted provided that the following conditions are
-** met:
-**   * Redistributions of source code must retain the above copyright
-**     notice, this list of conditions and the following disclaimer.
-**   * Redistributions in binary form must reproduce the above copyright
-**     notice, this list of conditions and the following disclaimer in
-**     the documentation and/or other materials provided with the
-**     distribution.
-**   * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor
-**     the names of its contributors may be used to endorse or promote
-**     products derived from this software without specific prior written
-**     permission.
-**
-** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-import QtQuick 2.0
-
-Rectangle {
-    id: container
-
-    property string text: "Button"
-    signal clicked
-
-    width: buttonLabel.width + 20; height: buttonLabel.height + 20
-    smooth: true
-    property color myCol: "#999999"
-    border { width: 1; color: Qt.darker(myCol) }
-    radius: 8
-
-    gradient: Gradient {
-        GradientStop {
-            position: 0.0
-            color: {
-                if (mouseArea.pressed)
-                    return Qt.darker(myCol)
-                else
-                    return Qt.lighter(myCol)
-            }
-        }
-        GradientStop { position: 1.0; color: myCol }
-    }
-
-    MouseArea { id: mouseArea; anchors.fill: parent; onClicked: container.clicked() }
-
-    Text {
-        id: buttonLabel; text: container.text; anchors.centerIn: container; color: "black"; font.pixelSize: 24
-    }
-}
diff --git a/examples/particles/exampleslauncher/content/Shell.qml b/examples/particles/exampleslauncher/content/Shell.qml
deleted file mode 100644 (file)
index afab774..0000000
+++ /dev/null
@@ -1,78 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
-** Contact: http://www.qt-project.org/
-**
-** This file is part of the examples of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:BSD$
-** You may use this file under the terms of the BSD license as follows:
-**
-** "Redistribution and use in source and binary forms, with or without
-** modification, are permitted provided that the following conditions are
-** met:
-**   * Redistributions of source code must retain the above copyright
-**     notice, this list of conditions and the following disclaimer.
-**   * Redistributions in binary form must reproduce the above copyright
-**     notice, this list of conditions and the following disclaimer in
-**     the documentation and/or other materials provided with the
-**     distribution.
-**   * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor
-**     the names of its contributors may be used to endorse or promote
-**     products derived from this software without specific prior written
-**     permission.
-**
-** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-import QtQuick 2.0
-
-Loader {
-    id: ldr
-    visible: false
-    focus: visible
-    onVisibleChanged: source = ""
-    opacity: visible?1:0
-    Behavior on opacity {NumberAnimation {}}
-
-    function setDemo(str) {
-        visible = true;
-        source = str;
-    }
-    Image {//TODO: Augment with PARTICLES
-        z: 1
-        source: "../../images/launcherIcons/close.png"
-        MouseArea {
-            anchors.fill: parent
-            onClicked: ldr.visible = false;
-        }
-    }
-    Rectangle {
-        z: -1
-        anchors.fill: parent
-        color:"black"
-        Text {
-            color: "white"
-            anchors.centerIn: parent
-            text: ldr.Status == Loader.Error ? "Error :(" : "Loading..."
-        }
-        MouseArea {
-            id: graball
-            anchors.fill: parent
-            onClicked:;
-        }
-    }
-}
diff --git a/examples/particles/exampleslauncher/content/launcher.js b/examples/particles/exampleslauncher/content/launcher.js
deleted file mode 100644 (file)
index a296dbd..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-function nameFromPath(path){
-    var ret = path.split('/');
-    return ret[ret.length-1].split('.')[0];
-}
-function iconFromPath(path){
-    var ret = path.split('/');
-    return "../images/launcherIcons/" + ret[ret.length-1].split('.')[0] + ".png";
-}
diff --git a/examples/particles/exampleslauncher/exampleslauncher.qml b/examples/particles/exampleslauncher/exampleslauncher.qml
deleted file mode 100644 (file)
index 2291434..0000000
+++ /dev/null
@@ -1,116 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
-** Contact: http://www.qt-project.org/
-**
-** This file is part of the examples of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:BSD$
-** You may use this file under the terms of the BSD license as follows:
-**
-** "Redistribution and use in source and binary forms, with or without
-** modification, are permitted provided that the following conditions are
-** met:
-**   * Redistributions of source code must retain the above copyright
-**     notice, this list of conditions and the following disclaimer.
-**   * Redistributions in binary form must reproduce the above copyright
-**     notice, this list of conditions and the following disclaimer in
-**     the documentation and/or other materials provided with the
-**     distribution.
-**   * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor
-**     the names of its contributors may be used to endorse or promote
-**     products derived from this software without specific prior written
-**     permission.
-**
-** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-import QtQuick 2.0
-import QtQuick.Particles 2.0
-import "content/launcher.js" as Util
-import "content"
-
-Rectangle {
-    color: "black"
-    width: 360
-    height: 600
-    Shell {
-        z: 1
-        id: shell
-        anchors.fill: parent
-    }
-
-    VisualDataModel {//TODO: Transitions between modes (and a second mode...)
-        id: vdm
-        model: [
-            "../../affectors/attractor.qml",
-            "../../affectors/customaffector.qml",
-            "../../affectors/groupgoal.qml",
-            "../../affectors/spritegoal.qml",
-            "../../affectors/turbulence.qml",
-            "../../affectors/wander.qml",
-            "../../customparticle/blurparticles.qml",
-            "../../customparticle/fragmentshader.qml",
-            "../../customparticle/imagecolors.qml",
-            "../../emitters/customemitter.qml",
-            "../../emitters/emitmask.qml",
-            "../../emitters/maximumemitted.qml",
-            "../../emitters/shapeanddirection.qml",
-            "../../emitters/timedgroupchanges.qml",
-            "../../emitters/trailemitter.qml",
-            "../../emitters/velocityfrommotion.qml",
-            "../../imageparticle/allatonce.qml",
-            "../../imageparticle/colortable.qml",
-            "../../imageparticle/deformation.qml",
-            "../../imageparticle/rotation.qml",
-            "../../imageparticle/sprites.qml",
-            "../../itemparticle/delegates.qml",
-            "../../itemparticle/particleview.qml",
-            "../../simple/dynamicemitters.qml",
-            "../../simple/multiplepainters.qml",
-            "../../simple/startstop.qml",
-            "../../plasmapatrol/plasmapatrol.qml"
-        ]
-        delegate: Rectangle {
-            color: "white"
-            width: 96
-            height: 96
-            Image {
-                width: 72
-                height: 72
-                anchors.centerIn: parent
-                source: Util.iconFromPath(modelData)
-            }
-            Text {
-                text: Util.nameFromPath(modelData)
-                anchors.bottom: parent.bottom
-                anchors.horizontalCenter: parent.horizontalCenter
-                font.pixelSize: 8
-            }
-            MouseArea {
-                anchors.fill: parent
-                onClicked: shell.setDemo(modelData)
-            }
-        }
-    }
-
-    GridView {
-        anchors.fill: parent
-        cellWidth: 120
-        cellHeight: 120
-        model: vdm
-    }
-}
diff --git a/examples/particles/images/launcherIcons/allatonce.png b/examples/particles/images/launcherIcons/allatonce.png
deleted file mode 100644 (file)
index b61d2d5..0000000
Binary files a/examples/particles/images/launcherIcons/allatonce.png and /dev/null differ
diff --git a/examples/particles/images/launcherIcons/attractor.png b/examples/particles/images/launcherIcons/attractor.png
deleted file mode 100644 (file)
index 4bd8040..0000000
Binary files a/examples/particles/images/launcherIcons/attractor.png and /dev/null differ
diff --git a/examples/particles/images/launcherIcons/blurparticles.png b/examples/particles/images/launcherIcons/blurparticles.png
deleted file mode 100644 (file)
index 4337f97..0000000
Binary files a/examples/particles/images/launcherIcons/blurparticles.png and /dev/null differ
diff --git a/examples/particles/images/launcherIcons/close.png b/examples/particles/images/launcherIcons/close.png
deleted file mode 100644 (file)
index c37714e..0000000
Binary files a/examples/particles/images/launcherIcons/close.png and /dev/null differ
diff --git a/examples/particles/images/launcherIcons/colortable.png b/examples/particles/images/launcherIcons/colortable.png
deleted file mode 100644 (file)
index 8841ea3..0000000
Binary files a/examples/particles/images/launcherIcons/colortable.png and /dev/null differ
diff --git a/examples/particles/images/launcherIcons/customaffector.png b/examples/particles/images/launcherIcons/customaffector.png
deleted file mode 100644 (file)
index d02e791..0000000
Binary files a/examples/particles/images/launcherIcons/customaffector.png and /dev/null differ
diff --git a/examples/particles/images/launcherIcons/customemitter.png b/examples/particles/images/launcherIcons/customemitter.png
deleted file mode 100644 (file)
index 6d49257..0000000
Binary files a/examples/particles/images/launcherIcons/customemitter.png and /dev/null differ
diff --git a/examples/particles/images/launcherIcons/deformation.png b/examples/particles/images/launcherIcons/deformation.png
deleted file mode 100644 (file)
index d1b722d..0000000
Binary files a/examples/particles/images/launcherIcons/deformation.png and /dev/null differ
diff --git a/examples/particles/images/launcherIcons/delegates.png b/examples/particles/images/launcherIcons/delegates.png
deleted file mode 100644 (file)
index 929414c..0000000
Binary files a/examples/particles/images/launcherIcons/delegates.png and /dev/null differ
diff --git a/examples/particles/images/launcherIcons/dynamicemitters.png b/examples/particles/images/launcherIcons/dynamicemitters.png
deleted file mode 100644 (file)
index 0cdef9d..0000000
Binary files a/examples/particles/images/launcherIcons/dynamicemitters.png and /dev/null differ
diff --git a/examples/particles/images/launcherIcons/emitmask.png b/examples/particles/images/launcherIcons/emitmask.png
deleted file mode 100644 (file)
index e943a4a..0000000
Binary files a/examples/particles/images/launcherIcons/emitmask.png and /dev/null differ
diff --git a/examples/particles/images/launcherIcons/flickr.png b/examples/particles/images/launcherIcons/flickr.png
deleted file mode 100644 (file)
index 4de2650..0000000
Binary files a/examples/particles/images/launcherIcons/flickr.png and /dev/null differ
diff --git a/examples/particles/images/launcherIcons/fragmentshader.png b/examples/particles/images/launcherIcons/fragmentshader.png
deleted file mode 100644 (file)
index 7c6de49..0000000
Binary files a/examples/particles/images/launcherIcons/fragmentshader.png and /dev/null differ
diff --git a/examples/particles/images/launcherIcons/gridsplosion.png b/examples/particles/images/launcherIcons/gridsplosion.png
deleted file mode 100644 (file)
index ec75453..0000000
Binary files a/examples/particles/images/launcherIcons/gridsplosion.png and /dev/null differ
diff --git a/examples/particles/images/launcherIcons/groupgoal.png b/examples/particles/images/launcherIcons/groupgoal.png
deleted file mode 100644 (file)
index 69c6f64..0000000
Binary files a/examples/particles/images/launcherIcons/groupgoal.png and /dev/null differ
diff --git a/examples/particles/images/launcherIcons/imagecolors.png b/examples/particles/images/launcherIcons/imagecolors.png
deleted file mode 100644 (file)
index 0ff13a3..0000000
Binary files a/examples/particles/images/launcherIcons/imagecolors.png and /dev/null differ
diff --git a/examples/particles/images/launcherIcons/list.png b/examples/particles/images/launcherIcons/list.png
deleted file mode 100644 (file)
index bc13263..0000000
Binary files a/examples/particles/images/launcherIcons/list.png and /dev/null differ
diff --git a/examples/particles/images/launcherIcons/maximumemitted.png b/examples/particles/images/launcherIcons/maximumemitted.png
deleted file mode 100644 (file)
index 4ef0435..0000000
Binary files a/examples/particles/images/launcherIcons/maximumemitted.png and /dev/null differ
diff --git a/examples/particles/images/launcherIcons/multiplepainters.png b/examples/particles/images/launcherIcons/multiplepainters.png
deleted file mode 100644 (file)
index a28e3c4..0000000
Binary files a/examples/particles/images/launcherIcons/multiplepainters.png and /dev/null differ
diff --git a/examples/particles/images/launcherIcons/package.png b/examples/particles/images/launcherIcons/package.png
deleted file mode 100644 (file)
index eba8951..0000000
Binary files a/examples/particles/images/launcherIcons/package.png and /dev/null differ
diff --git a/examples/particles/images/launcherIcons/particleview.png b/examples/particles/images/launcherIcons/particleview.png
deleted file mode 100644 (file)
index a74f9a0..0000000
Binary files a/examples/particles/images/launcherIcons/particleview.png and /dev/null differ
diff --git a/examples/particles/images/launcherIcons/plasmapatrol.png b/examples/particles/images/launcherIcons/plasmapatrol.png
deleted file mode 100644 (file)
index fda852b..0000000
Binary files a/examples/particles/images/launcherIcons/plasmapatrol.png and /dev/null differ
diff --git a/examples/particles/images/launcherIcons/remove.png b/examples/particles/images/launcherIcons/remove.png
deleted file mode 100644 (file)
index c37714e..0000000
Binary files a/examples/particles/images/launcherIcons/remove.png and /dev/null differ
diff --git a/examples/particles/images/launcherIcons/rotation.png b/examples/particles/images/launcherIcons/rotation.png
deleted file mode 100644 (file)
index 6a8dbea..0000000
Binary files a/examples/particles/images/launcherIcons/rotation.png and /dev/null differ
diff --git a/examples/particles/images/launcherIcons/samegame.png b/examples/particles/images/launcherIcons/samegame.png
deleted file mode 100644 (file)
index d006982..0000000
Binary files a/examples/particles/images/launcherIcons/samegame.png and /dev/null differ
diff --git a/examples/particles/images/launcherIcons/shapeanddirection.png b/examples/particles/images/launcherIcons/shapeanddirection.png
deleted file mode 100644 (file)
index 9c1f910..0000000
Binary files a/examples/particles/images/launcherIcons/shapeanddirection.png and /dev/null differ
diff --git a/examples/particles/images/launcherIcons/spaceexplorer.png b/examples/particles/images/launcherIcons/spaceexplorer.png
deleted file mode 100644 (file)
index 770584a..0000000
Binary files a/examples/particles/images/launcherIcons/spaceexplorer.png and /dev/null differ
diff --git a/examples/particles/images/launcherIcons/spritegoal.png b/examples/particles/images/launcherIcons/spritegoal.png
deleted file mode 100644 (file)
index 77480c6..0000000
Binary files a/examples/particles/images/launcherIcons/spritegoal.png and /dev/null differ
diff --git a/examples/particles/images/launcherIcons/sprites.png b/examples/particles/images/launcherIcons/sprites.png
deleted file mode 100644 (file)
index 144216a..0000000
Binary files a/examples/particles/images/launcherIcons/sprites.png and /dev/null differ
diff --git a/examples/particles/images/launcherIcons/spritevariedparticles.png b/examples/particles/images/launcherIcons/spritevariedparticles.png
deleted file mode 100644 (file)
index 495bb6b..0000000
Binary files a/examples/particles/images/launcherIcons/spritevariedparticles.png and /dev/null differ
diff --git a/examples/particles/images/launcherIcons/startstop.png b/examples/particles/images/launcherIcons/startstop.png
deleted file mode 100644 (file)
index 0ff5319..0000000
Binary files a/examples/particles/images/launcherIcons/startstop.png and /dev/null differ
diff --git a/examples/particles/images/launcherIcons/timedgroupchanges.png b/examples/particles/images/launcherIcons/timedgroupchanges.png
deleted file mode 100644 (file)
index ec9f826..0000000
Binary files a/examples/particles/images/launcherIcons/timedgroupchanges.png and /dev/null differ
diff --git a/examples/particles/images/launcherIcons/trailemitter.png b/examples/particles/images/launcherIcons/trailemitter.png
deleted file mode 100644 (file)
index 39acf8b..0000000
Binary files a/examples/particles/images/launcherIcons/trailemitter.png and /dev/null differ
diff --git a/examples/particles/images/launcherIcons/trails.png b/examples/particles/images/launcherIcons/trails.png
deleted file mode 100644 (file)
index 0337ebc..0000000
Binary files a/examples/particles/images/launcherIcons/trails.png and /dev/null differ
diff --git a/examples/particles/images/launcherIcons/turbulence.png b/examples/particles/images/launcherIcons/turbulence.png
deleted file mode 100644 (file)
index 2b9446e..0000000
Binary files a/examples/particles/images/launcherIcons/turbulence.png and /dev/null differ
diff --git a/examples/particles/images/launcherIcons/velocityfrommotion.png b/examples/particles/images/launcherIcons/velocityfrommotion.png
deleted file mode 100644 (file)
index 79baa08..0000000
Binary files a/examples/particles/images/launcherIcons/velocityfrommotion.png and /dev/null differ
diff --git a/examples/particles/images/launcherIcons/wander.png b/examples/particles/images/launcherIcons/wander.png
deleted file mode 100644 (file)
index d98e14b..0000000
Binary files a/examples/particles/images/launcherIcons/wander.png and /dev/null differ