Browse Source

added fxDual. also movies no longer jump randomly, they just play normally now

master
Victor Giers 2 years ago
parent
commit
9f372b565b
3 changed files with 4 additions and 3 deletions
  1. 1
    1
      data/saves.sav
  2. 1
    1
      effects.pde
  3. 2
    1
      source.pde

+ 1
- 1
data/saves.sav View File

@@ -1,2 +1,2 @@
//globals
uptime = 116660036
uptime = 116660915

+ 1
- 1
effects.pde View File

@@ -1457,7 +1457,7 @@ class ECHO extends Shader {

/*

Darker
DARKER
*/


+ 2
- 1
source.pde View File

@@ -8,7 +8,7 @@ void movieEvent(Movie m) {
m.read();
//if mode = 1..
sourceManager.setImage(movie.get());
movie.jump(random(movie.duration())); //??
//movie.jump(random(movie.duration())); //??
}
}
void newMovie(String path) {
@@ -111,6 +111,7 @@ class SourceManager { //no constructor
moviePlaying = true;
newMovie(path);
movie.loop();
movie.volume(0);
}
}
}

Loading…
Cancel
Save