Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
59225088
Commit
59225088
authored
Jan 29, 2016
by
Viktor Lidholt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adds opacity property to particle systems
parent
024cc2ca
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
particle_system.dart
packages/flutter_sprites/lib/src/particle_system.dart
+7
-1
No files found.
packages/flutter_sprites/lib/src/particle_system.dart
View file @
59225088
...
...
@@ -151,6 +151,8 @@ class ParticleSystem extends Node {
double
_emitCounter
;
int
_numEmittedParticles
=
0
;
double
opacity
=
1.0
;
static
Paint
_paint
=
new
Paint
()
..
filterQuality
=
ui
.
FilterQuality
.
low
..
isAntiAlias
=
false
;
...
...
@@ -358,6 +360,7 @@ class ParticleSystem extends Node {
}
void
paint
(
Canvas
canvas
)
{
if
(
opacity
==
0.0
)
return
;
List
<
ui
.
RSTransform
>
transforms
=
<
ui
.
RSTransform
>[];
List
<
Rect
>
rects
=
<
Rect
>[];
...
...
@@ -394,7 +397,7 @@ class ParticleSystem extends Node {
// Color
if
(
particle
.
simpleColorSequence
!=
null
)
{
Color
particleColor
=
new
Color
.
fromARGB
(
particle
.
simpleColorSequence
[
0
]
.
toInt
().
clamp
(
0
,
255
),
(
particle
.
simpleColorSequence
[
0
]
*
opacity
)
.
toInt
().
clamp
(
0
,
255
),
particle
.
simpleColorSequence
[
1
].
toInt
().
clamp
(
0
,
255
),
particle
.
simpleColorSequence
[
2
].
toInt
().
clamp
(
0
,
255
),
particle
.
simpleColorSequence
[
3
].
toInt
().
clamp
(
0
,
255
));
...
...
@@ -406,6 +409,9 @@ class ParticleSystem extends Node {
}
else
{
particleColor
=
colorSequence
.
colorAtPosition
(
particle
.
colorPos
);
}
if
(
opacity
!=
1.0
)
{
particleColor
=
particleColor
.
withAlpha
((
particleColor
.
alpha
*
opacity
).
toInt
().
clamp
(
0
,
255
));
}
colors
.
add
(
particleColor
);
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment