diff --git a/examples/particles/exampleslauncher/content/Button.qml b/examples/particles/exampleslauncher/content/Button.qml
deleted file mode 100644
index e51a9be0030f866da0c5e93fcf2d80b23fdd12c5..0000000000000000000000000000000000000000
--- a/examples/particles/exampleslauncher/content/Button.qml
+++ /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
index afab77485f678565dd49223935fedb1466993058..0000000000000000000000000000000000000000
--- a/examples/particles/exampleslauncher/content/Shell.qml
+++ /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
index a296dbd6a6f3fd613edf63b6ae1f9cca4e8047f5..0000000000000000000000000000000000000000
--- a/examples/particles/exampleslauncher/content/launcher.js
+++ /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
index 22914343baa856a11cf26ee3262bbb41d699dbd7..0000000000000000000000000000000000000000
--- a/examples/particles/exampleslauncher/exampleslauncher.qml
+++ /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
index b61d2d50d89ae59c18a55c50b41c5af02662a782..0000000000000000000000000000000000000000
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
index 4bd8040c3bf430f361dcc5bddf19cfd3eb9161f2..0000000000000000000000000000000000000000
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
index 4337f979cb772bb7860825d4852e97feea232a88..0000000000000000000000000000000000000000
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
index c37714ee8f297a6a96727cce564b9083e8ed0ac8..0000000000000000000000000000000000000000
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
index 8841ea30f993e2641eb034ad74bf2412230e17f8..0000000000000000000000000000000000000000
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
index d02e7918fa5ebdc8b468a7c3ed7a9b140c222669..0000000000000000000000000000000000000000
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
index 6d492573d186e8429d542c54b41961e91cd83a0b..0000000000000000000000000000000000000000
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
index d1b722df0161f5a66e3e656d3db252a71d67de4c..0000000000000000000000000000000000000000
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
index 929414cd0e5dce1577f46571007ed31bc9ef9873..0000000000000000000000000000000000000000
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
index 0cdef9d21ea61087dadf11d068f09016e6d87eac..0000000000000000000000000000000000000000
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
index e943a4adb9b6ef2eee6a90fb7e8e97cafe8ba28d..0000000000000000000000000000000000000000
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
index 4de2650280899276410f15105f96a592ede72e29..0000000000000000000000000000000000000000
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
index 7c6de498d561c5fc5288e2d69721c00501f3f5c9..0000000000000000000000000000000000000000
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
index ec75453df60f750926978ee73766e4a4a82ff3c8..0000000000000000000000000000000000000000
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
index 69c6f64e547d5ab5f0d8dd3ed9be155036796ee9..0000000000000000000000000000000000000000
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
index 0ff13a346ec1399c59b1b643d2b4c70e06554d85..0000000000000000000000000000000000000000
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
index bc13263cff4fc8c05d14b589480e171fb689d295..0000000000000000000000000000000000000000
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
index 4ef0435991a56dd952c2fd2072f5c4dc527829f8..0000000000000000000000000000000000000000
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
index a28e3c4f02a578ec66864f7ad3d0bdcce91ceb09..0000000000000000000000000000000000000000
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
index eba8951c26ca74d64dde03268837e36cc94de358..0000000000000000000000000000000000000000
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
index a74f9a0340fbea79c842ab0c0c6c5f8b396fe2d0..0000000000000000000000000000000000000000
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
index fda852b4208609018427a567d5576ec3d679f790..0000000000000000000000000000000000000000
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
index c37714ee8f297a6a96727cce564b9083e8ed0ac8..0000000000000000000000000000000000000000
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
index 6a8dbea236f9718e0686cd31d570d8cf1d3c5239..0000000000000000000000000000000000000000
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
index d00698264b8d56ac054b97d09b0291a045535397..0000000000000000000000000000000000000000
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
index 9c1f910d0c11f82d682222734ea8c6ad9449dfcd..0000000000000000000000000000000000000000
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
index 770584a0fa49226a0b77e17d902950ee0a0b850b..0000000000000000000000000000000000000000
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
index 77480c6f0918da228b57eabe3b5c0807429cf945..0000000000000000000000000000000000000000
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
index 144216ac7cb27141fd53819ac028d6d5a54c754a..0000000000000000000000000000000000000000
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
index 495bb6beeecd20dec4fad05bc0e2b534f238b783..0000000000000000000000000000000000000000
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
index 0ff53196a6149d65c9d7aa18baef61090e4f73d9..0000000000000000000000000000000000000000
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
index ec9f826495705cdbf69ba3469791431783466acd..0000000000000000000000000000000000000000
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
index 39acf8b40d6071e04bd68e3f61022cb169fefc6e..0000000000000000000000000000000000000000
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
index 0337ebcfd8d380cb342be189cff2bc1f8bc4ac3c..0000000000000000000000000000000000000000
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
index 2b9446ea900076d9efd7bfe3cdf01f8dc5dd8c7f..0000000000000000000000000000000000000000
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
index 79baa0829332af02e440404ea4933041d7d5b13d..0000000000000000000000000000000000000000
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
index d98e14b8ae2bc4cc9983747ec25f158cae9ec232..0000000000000000000000000000000000000000
Binary files a/examples/particles/images/launcherIcons/wander.png and /dev/null differ