3d-interface/controllers/before-begin/views/index.jade

25 lines
911 B
Plaintext
Raw Normal View History

2015-07-30 13:11:28 +02:00
extends ../../../views/base.jade
block content
h1 Now, things are getting serious
p.
2015-10-06 14:29:11 +02:00
You have successfully completed the tutorial ! Congratulations ! Now, things are getting
serious.
p.
You will be prompted with three successive scenes, each of which
containing 8 red coins. Your mission is simple: you have to collect the
8 red coins.
p.
There may be recommendations like the ones you saw in the tutorial :
they are here to help you navigate in the scene. Use them or ignore
them at your convenience.
2015-07-30 13:11:28 +02:00
2015-09-09 15:35:40 +02:00
button#next.btn.btn-success.navbar-btn(style={'margin-right':'10px', 'margin-bottom':'10px'})
span Go to the next step
script.
document.getElementById('next').onclick = function() {
document.getElementById('next').disabled = true;
2015-09-28 11:00:52 +02:00
window.location = '/prototype/play';
2015-09-09 15:35:40 +02:00
}