problems about animated graphs
Author |
Message |
zywan91
|
Posted: Thu Dec 14, 2006 11:04 pm Post subject: problems about animated graphs |
|
|
i use code "process" to draw two pieces of animated graphs and use code
"fork" to make them work at the same time. i know how to avoid flashing in a
single process (use View.Set offscreenonly & View.Update), but it begins
flashing when i tried to make them work together. i don't know how to deal
with it. Does anybody have any idea? |
|
|
|
|
 |
Sponsor Sponsor

|
|
 |
NikG
|
Posted: Thu Dec 14, 2006 11:44 pm Post subject: (No subject) |
|
|
If you read around this site, you will notice something:
"DO NOT USE PROCESSES!"
Instead, make variable for every object you want to animate and use a single loop statement with some if statements.
Then your View.Updates will work perfectly. |
|
|
|
|
 |
|
|