Hi all,
we have just released a trialbike game for Lego Jurassic World , by order and in cooperation with the german kids television broadcaster SuperRTL .
Short gameplay video: HERE
It’s localized in german language, just click “Jetzt spielen! ” (Play now!)
Thanks a lot to all of you people from the community who helped us to get along with the PlayCanvas engine, especially @yaustar @inductible @vaios @will and the others for answering our stupid questions
7 Likes
Plays really well! Great job!
What did you use for the vehicle physics? Ammo?
@yaustar Thank you. Yes, we’ve used the raycast vehicle from ammo.
1 Like
will
October 8, 2019, 11:18am
4
Wow, this is very impressive! I’ll record a video and tweet it from the PlayCanvas Twitter account. The world should see it!
1 Like
@will thanks a lot!! If this helps you: We are currently cutting a small gameplay video, we will send it to you today or tomorrow
will
October 8, 2019, 3:47pm
6
That would be great! I will wait then.
DevilZ
October 9, 2019, 4:44am
7
Looking absolutely fantastic!
1 Like
will
October 14, 2019, 1:26pm
8
I’ve tweeted out an announcement about this game here:
Show Redox Labs some and give them a retweet!
1 Like
will
October 17, 2019, 9:19am
10
It’s better to use the fullscreen API for that. For example, one of my projects does:
var el = document.getElementById('fullscreen-button');
if (document.documentElement.requestFullscreen) {
el.addEventListener('click', function (e) {
if (!el.classList.contains('checked')) {
document.documentElement.requestFullscreen();
} else {
if (document.exitFullscreen) {
document.exitFullscreen();
}
}
el.classList.toggle('checked');
});
} else {
el.classList.add('hidden');
}
1 Like
Thanks for the feedback. Since we have only devolped the game and they implemented it into their website, I have forwarded the request to their devs