mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-06-20 15:24:07 +00:00
ads:: demo feature (not enablable)
This commit is contained in:
parent
9c04b39ed3
commit
6be7951187
@ -213,6 +213,9 @@ rock_generator rockgen, rsrcgen;
|
|||||||
|
|
||||||
auto future_shown = 5 * TAU;
|
auto future_shown = 5 * TAU;
|
||||||
|
|
||||||
|
/** start with a fixed good-looking sequence */
|
||||||
|
bool demo;
|
||||||
|
|
||||||
void init_ds_game() {
|
void init_ds_game() {
|
||||||
|
|
||||||
dynamicval<eGeometry> g(geometry, gSpace435);
|
dynamicval<eGeometry> g(geometry, gSpace435);
|
||||||
@ -238,10 +241,17 @@ void init_ds_game() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
rockgen.cshift += 2;
|
rockgen.cshift += 2;
|
||||||
|
if(demo) {
|
||||||
|
rockgen.static_starry_field();
|
||||||
|
rockgen.hyperboloid();
|
||||||
|
rockgen.chaotic_starry_field();
|
||||||
|
rockgen.rack();
|
||||||
|
}
|
||||||
rockgen.add_until(future_shown);
|
rockgen.add_until(future_shown);
|
||||||
|
|
||||||
rsrcgen.cshift += 1;
|
rsrcgen.cshift += 1;
|
||||||
rsrcgen.add_rsrc_until(future_shown);
|
rsrcgen.add_rsrc_until(future_shown);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void ds_gen_particles(int qty, transmatrix from, ld shift, color_t col, ld spd, ld t, ld spread = 1) {
|
void ds_gen_particles(int qty, transmatrix from, ld shift, color_t col, ld spd, ld t, ld spread = 1) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user