Can someone with a rift test my roller coaster? now w/ sound
- MrGreen
- Diamond Eyed Freakazoid!
- Posts: 741
- Joined: Mon Sep 03, 2012 1:36 pm
- Location: QC, Canada
Re: Can someone with a rift test my roller coaster? now w/ s
I will never get my Rift. NEVER!
I finally saw your roller coaster thanks to Cymatic Bruce.
Man did it look better than what I expected! Can't wait!
I finally saw your roller coaster thanks to Cymatic Bruce.
Man did it look better than what I expected! Can't wait!
-
- One Eyed Hopeful
- Posts: 2
- Joined: Mon Apr 01, 2013 11:30 am
Re: Can someone with a rift test my roller coaster? now w/ s
Hi boone188,
First off, amazing coaster! Just wanted to ask, would you be at all willing to describe how you went about creating the coaster? I'm a beginner in UDK (and Unity) but with the ultimate goal of creating rides similar to your amazing coaster. Even just the basics of what I should focus on to get moving in the right direction would be helpful (custom waypoints or physics? camera control? splines?). If you don't want to share that is okay too, just thought I'd ask!
First off, amazing coaster! Just wanted to ask, would you be at all willing to describe how you went about creating the coaster? I'm a beginner in UDK (and Unity) but with the ultimate goal of creating rides similar to your amazing coaster. Even just the basics of what I should focus on to get moving in the right direction would be helpful (custom waypoints or physics? camera control? splines?). If you don't want to share that is okay too, just thought I'd ask!
-
- Petrif-Eyed
- Posts: 2708
- Joined: Sat Sep 01, 2012 10:47 pm
Re: Can someone with a rift test my roller coaster? now w/ s
For the gaming aspect, you need to steer to keep from falling off the track. That may also aid immersion and decrease motion sickness, by keeping your mind busy...rmcclelland wrote:... This could seriously be a game, roller coasting through all different time periods and environments. ...
This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 Unported License.
-
- Cross Eyed!
- Posts: 184
- Joined: Tue Apr 02, 2013 12:36 pm
- Location: Seattle, WA
Re: Can someone with a rift test my roller coaster? now w/ s
Thanks!Sephirenn wrote:Hi boone188,
First off, amazing coaster! Just wanted to ask, would you be at all willing to describe how you went about creating the coaster? I'm a beginner in UDK (and Unity) but with the ultimate goal of creating rides similar to your amazing coaster. Even just the basics of what I should focus on to get moving in the right direction would be helpful (custom waypoints or physics? camera control? splines?). If you don't want to share that is okay too, just thought I'd ask!
So there are basically two ways to go about creating a coaster:
1. The "Roller Coaster Tycoon" method. You create a toolbox of pieces that you can put together to create the coaster. Like straight piece, left turn piece, inclined piece, etc.. This works really well for a game because it's super easy for users to put pieces together. It does somewhat limit your creativity though. And it won't allow you to build a coaster to fit an existing environment like I did with the RiftCoaster.
2. The "spline" method (I used this). Splines are basically a set of points with a smooth curve connecting them. They are used for a lot of things in games, like defining paths that AI can travel. They can also be used to deform meshes. UDK includes an actor called a SplineLoftActor, which is a spline that deforms meshes. So you only need to have 1 straight piece mesh, and you can deform it to fit your spline. This allows you to create basically whatever your heart desires. It's not as easy to put together as a RCT coaster though. There's a very informative tutorial on this method on youtube.
As far as cameras go, this will basically be the same as any cockpit game. Basically you can create a new player controller and override GetPlayerViewPoint with something like:
Code: Select all
// Your player controller will have a local location and rotation,
// which is the head's location and rotation relative to the cart.
var Rotator LocalRotation;
var vector LocalLocation;
simulated event GetPlayerViewPoint( out vector out_Location, out Rotator out_Rotation )
{
local CoasterCar CC;
local Oculus OC;
local vector X, Y, Z;
// get reference to our coaster car
CC = CoasterGame(WorldInfo.Game).GetCoasterCar();
// update the local location and rotation of the eyes by adding the
// deltas from the Rift head tracker
OC = class'Oculus'.static.GetGlobals();
if (OC != None && OC.IsPlayer(self))
{
OC.UpdatePlayerViewPoint(self, LocalLocation, LocalRotation);
}
// the viewpoint location is the car's location plus the rotated local location
out_Location = CC.Rotation + (LocalLocation >> CC.Rotation);
// the viewpoint rotation is the local rotation rotated by the car's rotation
GetAxes(LocalRotation, X, Y, Z);
out_Rotation = OrthoRotation(X >> CC.Rotation, Y >> CC.Rotation, Z >> CC.Rotation);
}
event UpdateRotation( float DeltaTime )
{
// allow for mouse-based rotation for people like me that don't have a Rift :(
LocalRotation.Yaw += PlayerInput.aTurn;
LocalRotation.Pitch += PlayerInput.aLookUp;
}
-
- One Eyed Hopeful
- Posts: 46
- Joined: Mon Mar 18, 2013 2:27 am
Re: Can someone with a rift test my roller coaster? now w/ s
boone188:
I had an idea... can you add the ability to crash at the press of a keyboard button?
Imagine someone new to the rift, trying this coaster ride, and at will you can make them crash. A little mean but I would love to see peoples reactions
Regards:
John
I had an idea... can you add the ability to crash at the press of a keyboard button?
Imagine someone new to the rift, trying this coaster ride, and at will you can make them crash. A little mean but I would love to see peoples reactions
Regards:
John
-
- Cross Eyed!
- Posts: 184
- Joined: Tue Apr 02, 2013 12:36 pm
- Location: Seattle, WA
Re: Can someone with a rift test my roller coaster? now w/ s
It's certainly possible. It's not something I'm planning on adding right now though.digitaljohn wrote:boone188:
I had an idea... can you add the ability to crash at the press of a keyboard button?
Imagine someone new to the rift, trying this coaster ride, and at will you can make them crash. A little mean but I would love to see peoples reactions
Regards:
John
-
- One Eyed Hopeful
- Posts: 10
- Joined: Sat Jun 09, 2012 11:39 am
Re: Can someone with a rift test my roller coaster? now w/ s
This demo is awesome!
Showed it to my mom, dad, sister and wife. hey all thought it was awesome and there was much screaming involved when going around sharp turns or big drops.
They all stood up for the demo and I had to stand behind them to catch them when they would invariably lose their balance whenever there was a sudden change in direction.
Showed it to my mom, dad, sister and wife. hey all thought it was awesome and there was much screaming involved when going around sharp turns or big drops.
They all stood up for the demo and I had to stand behind them to catch them when they would invariably lose their balance whenever there was a sudden change in direction.
-
- One Eyed Hopeful
- Posts: 12
- Joined: Wed Mar 13, 2013 1:44 pm
Re: Can someone with a rift test my roller coaster? now w/ s
Warp Shader works now! *SWEET*!
-
- Cross Eyed!
- Posts: 184
- Joined: Tue Apr 02, 2013 12:36 pm
- Location: Seattle, WA
Re: Can someone with a rift test my roller coaster? now w/ s
Awesome! I will finally get my Rift next week, so I'll actually get to try it myself. All of the praise in this thread is making me really excited. I can't wait to unleash this on my family and friends.bobthedog007 wrote:This demo is awesome!
Showed it to my mom, dad, sister and wife. hey all thought it was awesome and there was much screaming involved when going around sharp turns or big drops.
They all stood up for the demo and I had to stand behind them to catch them when they would invariably lose their balance whenever there was a sudden change in direction.
-
- Cross Eyed!
- Posts: 116
- Joined: Tue Jun 19, 2012 12:15 pm
- Location: Lompoc, CA
Re: Can someone with a rift test my roller coaster? now w/ s
YES!! Finally something that didn't make my wife want to throw up. She spent the whole time going whoa...cool....aaaacckk ... was great.
- MrGreen
- Diamond Eyed Freakazoid!
- Posts: 741
- Joined: Mon Sep 03, 2012 1:36 pm
- Location: QC, Canada
Re: Can someone with a rift test my roller coaster? now w/ s
And you haven't even tried your own ride yet...
-
- Cross Eyed!
- Posts: 184
- Joined: Tue Apr 02, 2013 12:36 pm
- Location: Seattle, WA
Re: Can someone with a rift test my roller coaster? now w/ s
That's amazing and unexpected! When I was making this I thought it would be the thing that actually made people throw up.defactoman wrote:YES!! Finally something that didn't make my wife want to throw up. She spent the whole time going whoa...cool....aaaacckk ... was great.
-
- Cross Eyed!
- Posts: 184
- Joined: Tue Apr 02, 2013 12:36 pm
- Location: Seattle, WA
Re: Can someone with a rift test my roller coaster? now w/ s
I feel kind of like Beethoven composing a song that he couldn't hear. Well, you know, minus all the talent.MrGreen wrote:And you haven't even tried your own ride yet...
- Tbone
- Two Eyed Hopeful
- Posts: 64
- Joined: Tue Jan 15, 2013 5:43 pm
- Location: Washington, DC
- Contact:
Re: Can someone with a rift test my roller coaster? now w/ s
This was the highlight of my two hour journey through the Rift! Rmcclelland saved it for last! Great work!
-
- Binocular Vision CONFIRMED!
- Posts: 206
- Joined: Fri Mar 15, 2013 2:49 am
Re: Can someone with a rift test my roller coaster? now w/ s
Any chance to add support for D-Box motion systems?
This really shouts for motion system output...
I have an D-Box GP pro 200 chair waiting for input
Or should i contact D-Box for support?
At least i could test it - in roughly a month with the RiftDK (order 479xx)...
This really shouts for motion system output...
I have an D-Box GP pro 200 chair waiting for input
Or should i contact D-Box for support?
At least i could test it - in roughly a month with the RiftDK (order 479xx)...
-
- Binocular Vision CONFIRMED!
- Posts: 223
- Joined: Thu Mar 07, 2013 4:46 am
Re: Can someone with a rift test my roller coaster?
Zoide wrote:I asked the NoLimits people about plans for Rift support, and this was their response:
<<Will the NoLimits Rollercoaster Simulator support the Oculus Rift virtual reality HMD?>>
Unfortunately not, sorry.
Many Regards,
Joerg
NoLimits Support
Any chance of vireio or similar working with this? Has stereo support already, and I think is openGL based which might make it tricky, but might be possible to get it working without a directly supported update,
-
- Cross Eyed!
- Posts: 184
- Joined: Tue Apr 02, 2013 12:36 pm
- Location: Seattle, WA
Re: Can someone with a rift test my roller coaster? now w/ s
I would add support if I could. Unfortunately, there doesn't seem to be an SDK available.mr.uu wrote:Any chance to add support for D-Box motion systems?
This really shouts for motion system output...
I have an D-Box GP pro 200 chair waiting for input
Or should i contact D-Box for support?
At least i could test it - in roughly a month with the RiftDK (order 479xx)...
-
- One Eyed Hopeful
- Posts: 9
- Joined: Wed Apr 17, 2013 6:15 pm
Re: Can someone with a rift test my roller coaster? now w/ s
It'll be a long time before I get a Rift but this looks amazing! The best looking Coaster ride I've ever seen.
-
- One Eyed Hopeful
- Posts: 8
- Joined: Tue Apr 16, 2013 6:57 pm
Re: Can someone with a rift test my roller coaster? now w/ s
Great job on this. The bit where you're just going over the edge really gives you the same feeling you get on a coaster - it works really well. I had to start leaning into the turns a bit so that I didn't barf on myself.
Nice job though!
Nice job though!
-
- Cross Eyed!
- Posts: 184
- Joined: Tue Apr 02, 2013 12:36 pm
- Location: Seattle, WA
Re: Can someone with a rift test my roller coaster? now w/ s
Looks like this will soon be outshined by Theme Park Studio which is about to announce Rift support! Everyone back their kickstarter!
- Parallaxis
- Sharp Eyed Eagle!
- Posts: 370
- Joined: Sat Feb 23, 2013 6:28 am
- Location: Denmark
Re: Can someone with a rift test my roller coaster? now w/ s
Please keep working on this, the other game could be a whole year away and you already made on of the most impressive demos for Rift. If you keep improving this, it could be THE Rift demo to show.boone188 wrote:Looks like this will soon be outshined by Theme Park Studio which is about to announce Rift support! Everyone back their kickstarter!
www.AwesomeBlade.com
-
- Cross Eyed!
- Posts: 184
- Joined: Tue Apr 02, 2013 12:36 pm
- Location: Seattle, WA
Re: Can someone with a rift test my roller coaster? now w/ s
Oh I'm definitely going to keep working on this. It's much too fun to just give up!Parallaxis wrote:Please keep working on this, the other game could be a whole year away and you already made on of the most impressive demos for Rift. If you keep improving this, it could be THE Rift demo to show.boone188 wrote:Looks like this will soon be outshined by Theme Park Studio which is about to announce Rift support! Everyone back their kickstarter!
- Dakor
- Binocular Vision CONFIRMED!
- Posts: 213
- Joined: Sat Nov 03, 2012 8:58 am
- Location: Dortmund, Germany
- Contact:
Re: Can someone with a rift test my roller coaster? now w/ s
Anyone wants to Upload an Video or some Screenshots?
I'd love to see something but since my rift didn't arrived yet Youtube would be fine for me
I'd love to see something but since my rift didn't arrived yet Youtube would be fine for me
German blogger, enthusiast and developer.
-
- One Eyed Hopeful
- Posts: 1
- Joined: Tue Apr 16, 2013 3:59 am
Re: Can someone with a rift test my roller coaster? now w/ s
cymatic bruce made a video on the coaster
http://youtu.be/5IJhYn0tdoQ?t=4m30s
http://youtu.be/5IJhYn0tdoQ?t=4m30s
-
- Cross Eyed!
- Posts: 115
- Joined: Thu Jul 19, 2012 1:01 am
Re: Can someone with a rift test my roller coaster? now w/ s
boone188 wrote:Oh I'm definitely going to keep working on this. It's much too fun to just give up!Parallaxis wrote:Please keep working on this, the other game could be a whole year away and you already made on of the most impressive demos for Rift. If you keep improving this, it could be THE Rift demo to show.boone188 wrote:Looks like this will soon be outshined by Theme Park Studio which is about to announce Rift support! Everyone back their kickstarter!
I have to say. while I am still waiting for my Rift, this roller coaster thing you have created, is my most anticipated demo I will try on my rift. Keep up the good work.
- zerax
- Two Eyed Hopeful
- Posts: 54
- Joined: Thu Jan 31, 2013 9:43 am
- Location: Norway
Re: Can someone with a rift test my roller coaster? now w/ s
I sent them a massage and recommended to add Oculus Rift as a low 85,000 stretch goal. Or just post a kickstarter update with Oculus Rift support, this could really help accelerate the kickstarter!boone188 wrote:Looks like this will soon be outshined by Theme Park Studio which is about to announce Rift support! Everyone back their kickstarter!
If they announce Rift support this Monday this is great news, nice they listen to the community.
-
- One Eyed Hopeful
- Posts: 41
- Joined: Thu Jun 07, 2012 4:28 am
Re: Can someone with a rift test my roller coaster? now w/ s
Is it just me or are the rift setup instructions just a bit over complicated? So many threads have all these different commands to enable rift support. Isn't there a way to do it by default? All working right out of the .exe instead of having to write different command and edit ini files? It's one thing if it's a boolean value, but there seems to be a lot of different values that need to be set.
I keep reading of someone turning on some setting but then some view thing is wrong, or maybe the FOV is wrong. Keep in mind I haven't gotten my rift yet.
For example for this demo. What exactly do you need to do to have it correctly setup for the rift?
Thanks!
I keep reading of someone turning on some setting but then some view thing is wrong, or maybe the FOV is wrong. Keep in mind I haven't gotten my rift yet.
For example for this demo. What exactly do you need to do to have it correctly setup for the rift?
Thanks!
-
- Cross Eyed!
- Posts: 135
- Joined: Sun Aug 26, 2012 5:45 pm
Re: Can someone with a rift test my roller coaster? now w/ s
Thats the Reason why it (The Oculus Rift) is a Developer Version... or maybe for enthusiasts (like me)
The Riftcoaster is something i call "it works out of the box"... with the following little changes...
1.) Download
https://s3.amazonaws.com/RiftCoaster/UD ... oaster.exe
2.) Install
3.) In "UDK\RiftCoaster\UDKGame\Config\UDKEngine.ini" nearby [Engine.Stereo3D] change "bEnabled=True" (original false)
4.) In "UDK\RiftCoaster\UDKGame\Config\UDKSystemSettings.ini" nearby [SystemSettings] change "DepthOfField=True" (original false)
5.) Start the Game
But personally i think that the UDK Integration is not as good as unity... but i am not a developer... just my opinion with "Techdemo-Testing".
PS: sorry didnt post here before - the Riftcoster is amazing - boone188 i want to see more!
The Riftcoaster is something i call "it works out of the box"... with the following little changes...
1.) Download
https://s3.amazonaws.com/RiftCoaster/UD ... oaster.exe
2.) Install
3.) In "UDK\RiftCoaster\UDKGame\Config\UDKEngine.ini" nearby [Engine.Stereo3D] change "bEnabled=True" (original false)
4.) In "UDK\RiftCoaster\UDKGame\Config\UDKSystemSettings.ini" nearby [SystemSettings] change "DepthOfField=True" (original false)
5.) Start the Game
But personally i think that the UDK Integration is not as good as unity... but i am not a developer... just my opinion with "Techdemo-Testing".
PS: sorry didnt post here before - the Riftcoster is amazing - boone188 i want to see more!
-
- One Eyed Hopeful
- Posts: 41
- Joined: Thu Jun 07, 2012 4:28 am
Re: Can someone with a rift test my roller coaster? now w/ s
Thanks, so does that give the right FOV for the Rift? Boone188 mentioned the FOV not being correct (90 instead of 110)? Also what's the benfit of ScreenPercentage=200 (or 150)?RoTaToR wrote:Thats the Reason why it (The Oculus Rift) is a Developer Version... or maybe for enthusiasts (like me)
The Riftcoaster is something i call "it works out of the box"... with the following little changes...
1.) Download
https://s3.amazonaws.com/RiftCoaster/UD ... oaster.exe
2.) Install
3.) In "UDK\RiftCoaster\UDKGame\Config\UDKEngine.ini" nearby [Engine.Stereo3D] change "bEnabled=True" (original false)
4.) In "UDK\RiftCoaster\UDKGame\Config\UDKSystemSettings.ini" nearby [SystemSettings] change "DepthOfField=True" (original false)
5.) Start the Game
But personally i think that the UDK Integration is not as good as unity... but i am not a developer... just my opinion with "Techdemo-Testing".
I am a developer, but I still want a good first experience with the Rift =) almost 30 and feel like a kid waiting for Santa wanting everything to be perfect when the presents arrive.
Last edited by nixarn on Sun Apr 21, 2013 2:35 pm, edited 1 time in total.
-
- Cross Eyed!
- Posts: 184
- Joined: Tue Apr 02, 2013 12:36 pm
- Location: Seattle, WA
Re: Can someone with a rift test my roller coaster? now w/ s
This demo should now just work when a rift is plugged in. No commands or config changes necessary.nixarn wrote:Is it just me or are the rift setup instructions just a bit over complicated? So many threads have all these different commands to enable rift support. Isn't there a way to do it by default? All working right out of the .exe instead of having to write different command and edit ini files? It's one thing if it's a boolean value, but there seems to be a lot of different values that need to be set.
I keep reading of someone turning on some setting but then some view thing is wrong, or maybe the FOV is wrong. Keep in mind I haven't gotten my rift yet.
For example for this demo. What exactly do you need to do to have it correctly setup for the rift?
Thanks!
And you can't blame the creators for wanting to push something out today that requires commands rather than delaying until it works out of the box. These are only developer kits right now after all.
-
- One Eyed Hopeful
- Posts: 41
- Joined: Thu Jun 07, 2012 4:28 am
Re: Can someone with a rift test my roller coaster? now w/ s
Awesome =) thanks (And thanks for the demo I've been wanting!). But changing FOV to 110, DepthOfField to True and ScreenPercentage to 200 makes it even cooler?boone188 wrote:This demo should now just work when a rift is plugged in. No commands or config changes necessary.nixarn wrote:Is it just me or are the rift setup instructions just a bit over complicated? So many threads have all these different commands to enable rift support. Isn't there a way to do it by default? All working right out of the .exe instead of having to write different command and edit ini files? It's one thing if it's a boolean value, but there seems to be a lot of different values that need to be set.
I keep reading of someone turning on some setting but then some view thing is wrong, or maybe the FOV is wrong. Keep in mind I haven't gotten my rift yet.
For example for this demo. What exactly do you need to do to have it correctly setup for the rift?
Thanks!
And you can't blame the creators for wanting to push something out today that requires commands rather than delaying until it works out of the box. These are only developer kits right now after all.
-
- Binocular Vision CONFIRMED!
- Posts: 345
- Joined: Fri Nov 18, 2011 1:32 am
Re: Can someone with a rift test my roller coaster? now w/ s
BTW, the NoLimits people got back to me again. I asked them: "Are you just saying that it is not supported currently, or are you saying that there are no plans to support it in the future?"
Their response:
There are no future plans.
Many Regards,
Joerg
NoLimits Support
Their response:
There are no future plans.
Many Regards,
Joerg
NoLimits Support
-
- One Eyed Hopeful
- Posts: 2
- Joined: Tue Feb 19, 2013 10:56 am
Re: Can someone with a rift test my roller coaster? now w/ s
Very nicely done! I can't wait for more of these type things.
-
- One Eyed Hopeful
- Posts: 19
- Joined: Fri Jun 15, 2012 1:27 pm
- Location: Seattle, WA
- Contact:
Re: Can someone with a rift test my roller coaster? now w/ s
Boone! That was awesome! If you still don't have your Rift yet, you should swing by or we'll meet up so you can give it a try. Didn't we discover that we live in the same area of town during the VRcade demo?
Future: VRCade | Goal: VRDK | Company: Mind-Games Intermedia
-
- Cross Eyed!
- Posts: 184
- Joined: Tue Apr 02, 2013 12:36 pm
- Location: Seattle, WA
Re: Can someone with a rift test my roller coaster? now w/ s
Thanks! My Rift will be arriving on Wednesday, so obviously I'm ridiculously excited. We should definitely meet up soon anyways. I live on Cap Hill; is that close? I still can't get over how cool the VRcade is, and I need to get back in there as soon as possible! I've been thinking about whipping up a demo to try out some VRcade mechanics the next time you have it set up. Any idea when that might be?DaveRuddell wrote:Boone! That was awesome! If you still don't have your Rift yet, you should swing by or we'll meet up so you can give it a try. Didn't we discover that we live in the same area of town during the VRcade demo?
- TheHolyChicken
- Diamond Eyed Freakazoid!
- Posts: 733
- Joined: Thu Oct 18, 2012 3:34 am
- Location: Brighton, UK
- Contact:
Re: Can someone with a rift test my roller coaster? now w/ s
I initially posted this in another thread (being a bit offtopic, woops), but I thought I'd repost here:
With that in mind, I'd aim for big and bold. To emphasise the feeling of speed, make sure there are plenty of reference objects around so you can judge it properly. One neat trick is a long fall into a tiny narrow tunnel - I expect this will be especially effective in the Rift!
This is going to sound stupidly obvious, but focus on the impressive/scary VISUAL aspect of what make rollercoasters exciting. Barrel rolls, for example, are physically exciting, but they aren't visually exciting. The thrill is in feeling your body spin. The Rift, unfortunately, can only show you visuals.boone188 wrote:Basically, I'm trying to decide which direction to go with my next "ride". I can either go for a bigger, faster, more thrilling coaster with loops and barrel rolls, etc. Or I can do a more thematic ride (splash mountain at Disney is one of my favorites).
With that in mind, I'd aim for big and bold. To emphasise the feeling of speed, make sure there are plenty of reference objects around so you can judge it properly. One neat trick is a long fall into a tiny narrow tunnel - I expect this will be especially effective in the Rift!
Sometimes I sits and thinks, and sometimes I just sits.
- Zhin
- One Eyed Hopeful
- Posts: 43
- Joined: Thu Aug 30, 2012 3:18 am
Re: Can someone with a rift test my roller coaster? now w/ s
First of all, GREAT work!
I have not received my Rift yet but even without it, this is still pretty cool.
I agree with the previous post, go for visual grandure.
It´d be really cool to work with a "drama flow". Maybe the first drop is really really to you on your journey up to it. Multiple drops would also be pretty cool.
Anyway, you seem like a creative dude. So just go NUTS. Dont think about if you are going over the top or not, experiment like crazy.
I have not received my Rift yet but even without it, this is still pretty cool.
I agree with the previous post, go for visual grandure.
It´d be really cool to work with a "drama flow". Maybe the first drop is really really to you on your journey up to it. Multiple drops would also be pretty cool.
Anyway, you seem like a creative dude. So just go NUTS. Dont think about if you are going over the top or not, experiment like crazy.
-
- One Eyed Hopeful
- Posts: 3
- Joined: Wed Apr 17, 2013 11:16 pm
Re: Can someone with a rift test my roller coaster? now w/ s
Hey Boone,
I mentioned this a couple places elsewhere, I should mention to you directly: One of the my most impactful moments with the Rift was watching a old man in a wheelchair ride your coaster a couple days ago. It's a hard fact that he'll never ride a real coaster again in his life. But, he laughed and smiled while riding yours. You made an old man happy. Thanks for that.
I mentioned this a couple places elsewhere, I should mention to you directly: One of the my most impactful moments with the Rift was watching a old man in a wheelchair ride your coaster a couple days ago. It's a hard fact that he'll never ride a real coaster again in his life. But, he laughed and smiled while riding yours. You made an old man happy. Thanks for that.
-
- Cross Eyed!
- Posts: 184
- Joined: Tue Apr 02, 2013 12:36 pm
- Location: Seattle, WA
Re: Can someone with a rift test my roller coaster? now w/ s
Thanks for sharing this. It makes me feel really good. The Rift, and virtual reality, are going to allow a lot of people to experience things that they otherwise couldn't. There's already a lot of talk about how much of an impact this could have on treatments for numerous conditions. It can allow an old man in a wheelchair to ride a roller coaster, or climb a mountain. A lot of good could come of this.corysama wrote:Hey Boone,
I mentioned this a couple places elsewhere, I should mention to you directly: One of the my most impactful moments with the Rift was watching a old man in a wheelchair ride your coaster a couple days ago. It's a hard fact that he'll never ride a real coaster again in his life. But, he laughed and smiled while riding yours. You made an old man happy. Thanks for that.
- gray
- Two Eyed Hopeful
- Posts: 54
- Joined: Thu Aug 02, 2012 7:29 am
Re: Can someone with a rift test my roller coaster? now w/ s
One of the best demos, yet. Really enjoying this!