aboutsummaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/declarative/particles/asteroid/blackhole.qml2
-rw-r--r--examples/declarative/particles/spaceexplorer/spaceexplorer.qml6
2 files changed, 4 insertions, 4 deletions
diff --git a/examples/declarative/particles/asteroid/blackhole.qml b/examples/declarative/particles/asteroid/blackhole.qml
index 4a7ce02538..441f4c38d6 100644
--- a/examples/declarative/particles/asteroid/blackhole.qml
+++ b/examples/declarative/particles/asteroid/blackhole.qml
@@ -149,7 +149,7 @@ Rectangle{
id: gs; x: root.width/2; y: root.height/2; strength: 4000000;
system: particles
physics: PointAttractor.Acceleration
- proportionalToDistance: PointAttractor.Quadratic
+ proportionalToDistance: PointAttractor.InverseQuadratic
}
Kill{
system: particles
diff --git a/examples/declarative/particles/spaceexplorer/spaceexplorer.qml b/examples/declarative/particles/spaceexplorer/spaceexplorer.qml
index 1bb3cdae02..727d711053 100644
--- a/examples/declarative/particles/spaceexplorer/spaceexplorer.qml
+++ b/examples/declarative/particles/spaceexplorer/spaceexplorer.qml
@@ -276,7 +276,7 @@ Rectangle{
}
PointAttractor{
id: gs1; x: vorteX; y: vorteY; strength: 800000;
- proportionalToDistance: PointAttractor.Quadratic;
+ proportionalToDistance: PointAttractor.InverseQuadratic;
system: foreground
}
Kill{
@@ -289,7 +289,7 @@ Rectangle{
PointAttractor{
id: gs2; x: vorteX2; y: vorteY2; strength: 800000;
- proportionalToDistance: PointAttractor.Quadratic;
+ proportionalToDistance: PointAttractor.InverseQuadratic;
system: foreground
}
Kill{
@@ -302,7 +302,7 @@ Rectangle{
PointAttractor{
id: gs3; x: vorteX3; y: vorteY3; strength: 800000;
- proportionalToDistance: PointAttractor.Quadratic;
+ proportionalToDistance: PointAttractor.InverseQuadratic;
system: foreground
}
Kill{