-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathconfiguration.lua
executable file
·60 lines (55 loc) · 1.75 KB
/
configuration.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
---
-- Created by IntelliJ IDEA.
-- User: Krystian
-- Date: 06.02.12
-- Time: 21:54
---
-- Particle Candy Corona Effect Helper
-- version 0.2
-- These are the defaults application will be started with
-- You will be able to adjust all of these using sliders in app
-- Background color behind emitter:
BackgroundColor = {255, 0, 255 }
BackgroundImage = "test-bg.png"
BackgroundImageEnabled = false
-- Particle Image info
ParticleImage.name = "test.png"
ParticleImage.width = 32
ParticleImage.height = 32
-- Particle default settings
DefaultProperties.lifeTime=5500
DefaultProperties.weight=0
DefaultProperties.directionVariation=0
DefaultProperties.velocityStart=200
DefaultProperties.velocityVariation=0
DefaultProperties.velocityChange=0
DefaultProperties.rotationStart=0
DefaultProperties.rotationVariation=0
DefaultProperties.rotationChange=0
DefaultProperties.autoOrientation=true
DefaultProperties.useEmitterRotation=true
DefaultProperties.alphaStart=1
DefaultProperties.alphaVariation=0
DefaultProperties.fadeInSpeed=0
DefaultProperties.fadeOutSpeed=-0.1
DefaultProperties.fadeOutDelay=3000
DefaultProperties.scaleStart=1
DefaultProperties.scaleVariation=0
DefaultProperties.scaleInSpeed=0
DefaultProperties.scaleMax=1
DefaultProperties.scaleOutDelay=0
DefaultProperties.scaleOutSpeed=0
DefaultProperties.colorStartR=0
DefaultProperties.colorStartG=0
DefaultProperties.colorStartB=0
DefaultProperties.colorChangeR=0
DefaultProperties.colorChangeG=0
DefaultProperties.colorChangeB=0
DefaultProperties.emissionShape = 0
DefaultProperties.emissionRadius = 1
DefaultProperties.randomMotionMode = 0
DefaultProperties.randomMotionInterval = 1
DefaultProperties.randomMotionAmount = 1
DefaultProperties.emissionRate=5
DefaultProperties.emissionAngle=90
DefaultProperties.colorModification=0