brittscott Posted November 6, 2016 Share Posted November 6, 2016 JYSse4S3CBc InfoStuff I had started working on some time ago. I wanted to see if my old xbox keybinds would work with an Xbox One gamepad. The Rally car isn't the greatest and has it's issues. Take this resource as it is and learn from my mistakes. If anyone wants to fix or use this resource, you are more than welcome to.Download Link:https://drive.google.com/file/d/0B4K1M7P0W_qbOWxpaERrUE50Mk0/view?usp=sharingSetup1. Place "art" and "scripts" folders based on their folder hierarchy. Everything else is either reference or source files.2. Run Torque3D and open World Editor.3. Under Scene Tree, click "Library" tab -> click "Scripted" tab-> click "Vehicles" folder -> click "RallyCar"4. Exit world editor and walk into car to drive.Vehicle features:-headlights-turn signals-brake lights-reverse lights(These all do work, but are not working as intended.) Quote Link to comment Share on other sites More sharing options...
Bloodknight Posted November 6, 2016 Share Posted November 6, 2016 Vehicle features:-headlights-turn signals-brake lights-reverse lights(These all do work, but are not working as intended.) by not intended you mean when you hit the brakes, the headlights come on so you can see the full horror on the face of the victim late at night? Quote Link to comment Share on other sites More sharing options...
NekoDemon117 Posted November 6, 2016 Share Posted November 6, 2016 Vehicle features:-headlights-turn signals-brake lights-reverse lights(These all do work, but are not working as intended.) by not intended you mean when you hit the brakes, the headlights come on so you can see the full horror on the face of the victim late at night?Oh, deer! Quote Link to comment Share on other sites More sharing options...
brittscott Posted November 6, 2016 Author Share Posted November 6, 2016 lol yep that's it.The car has a random skin on it and sometimes the lights don't show up the best. My way of thinking is going in reverse, it should show the brakes until the car starts moving backwards. Then the reverse lights should light up, but it doesn't currently do that. Quote Link to comment Share on other sites More sharing options...
Jason Campbell Posted November 7, 2016 Share Posted November 7, 2016 Thank you! Very cool. Quote Link to comment Share on other sites More sharing options...
JeffR Posted November 7, 2016 Share Posted November 7, 2016 Most excellent of works, good sir! Quote Link to comment Share on other sites More sharing options...
kent Posted November 8, 2016 Share Posted November 8, 2016 Sweet! Thanks.I'm tossing together a kitchen-sink WheeledVehicle resource (close enough to play with, but not quite ready to release). Is it OK if I add this model to it?@Jason Campbell: I already snagged your Jeep. Thanks to you as well. :-) Quote Link to comment Share on other sites More sharing options...
kent Posted November 8, 2016 Share Posted November 8, 2016 lol yep that's it.The car has a random skin on it and sometimes the lights don't show up the best. My way of thinking is going in reverse, it should show the brakes until the car starts moving backwards. Then the reverse lights should light up, but it doesn't currently do that.The reverse lights aren't working because $movementSpeed is a constant. It will always be 1 unless it is changed with setSpeed() (then it will always be whatever you set it to). As it sits, looks like the lights *should* toggle every time the bound button is pressed or released. It needs a vehicle velocity check so the reverse lights can be activated/deactivated when the velocity switches between positive/negative. But I don't think you can do the check where you are hooking it ( movebackward() should only get called when the key press state changes ). Maybe make a tickable script to manage the lighting toggled in movebackward() when $mvBackwardAction > 0. That might be a sort of dirty way to do it ... but it's the best I can think of right now. Quote Link to comment Share on other sites More sharing options...
brittscott Posted November 8, 2016 Author Share Posted November 8, 2016 lol yep that's it.The car has a random skin on it and sometimes the lights don't show up the best. My way of thinking is going in reverse, it should show the brakes until the car starts moving backwards. Then the reverse lights should light up, but it doesn't currently do that.The reverse lights aren't working because $movementSpeed is a constant. It will always be 1 unless it is changed with setSpeed() (then it will always be whatever you set it to). As it sits, looks like the lights *should* toggle every time the bound button is pressed or released. It needs a vehicle velocity check so the reverse lights can be activated/deactivated when the velocity switches between positive/negative. But I don't think you can do the check where you are hooking it ( movebackward() should only get called when the key press state changes ). Maybe make a tickable script to manage the lighting toggled in movebackward() when $mvBackwardAction > 0. That might be a sort of dirty way to do it ... but it's the best I can think of right now. I assumed there was a way, I just haven't used Torque for so long. I'm not the greatest programmer either. lol This was just something that I had worked on a few years ago. I wanted to throw it out in the chance that it might be use to someone. Quote Link to comment Share on other sites More sharing options...
brittscott Posted November 8, 2016 Author Share Posted November 8, 2016 Sweet! Thanks.I'm tossing together a kitchen-sink WheeledVehicle resource (close enough to play with, but not quite ready to release). Is it OK if I add this model to it?@Jason Campbell: I already snagged your Jeep. Thanks to you as well. :-) Yeah, you can do whatever you want with it. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.