| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161 |
- ---
- layout: default
- title: Torque 3D
- root: .
- ---
- <div class="jumbotron banner">
- <div class="container">
- <div class="row">
- <div class="col-sm-4">
- <img id="torque-logo" src="{{page.root}}/img/torque.png"></img>
- </div>
- <div class="col-sm-8">
- <h1 class="title">Torque 3D</h1>
- <p>The premier open-source game engine.</p>
- </div>
- </div>
- </div>
- </div>
- <div class="break"></div>
- <div class="container">
- <div class="row">
- <div class="col-sm-4">
- <h2>Proven</h2>
- <p>
- Torque has been around for a while, and it's been used for everything
- from interactive coral reefs to MMOs to driving simulators.
- </p>
- <a href="{{page.root}}/engine">Games made with Torque <i class="fa fa-angle-right"></i></a>
- </div>
- <div class="col-sm-4">
- <h2>Gratis et libre</h2>
- <p>
- When you get Torque, you get everything. Under the permissive MIT
- open-source license, you can do what you want with the source code.
- </p>
- <a href="{{page.root}}/start">Download it now <i class="fa fa-angle-right"></i></a>
- </div>
- <div class="col-sm-4">
- <h2>Always evolving</h2>
- <p>
- Torque is being constantly developed by an enthusiastic community.
- Its future is in <em>your</em> hands, not those of a company with a
- bottom line to meet.
- </p>
- <a href="{{page.root}}/contribute">Get involved <i class="fa fa-angle-right"></i></a>
- </div>
- </div>
- </div>
- <div class="break"></div>
- <div class="container">
- <div class="row">
- <div class="col-sm-6">
- <h2 class="status">Status</h2>
- <table class="borderless history table">
- <tr>
- <td>Current version</td>
- <td>Torque 3D 3.5.1 <br />
- Project Manager 2.1 <br />
- </tr>
- <tr>
- <td>Build</td>
- <td>
- <table>
- <tr><td>Nightly:</td><td> <img src="http://builds.garagegames.com/app/rest/builds/buildType:(id:bt79)/statusIcon"></img></td></tr>
- <tr><td>Release:</td><td> <img src="http://builds.garagegames.com/app/rest/builds/buildType:(id:bt79)/statusIcon"></img></td></tr>
- </table>
- </td>
- </tr>
- </table>
- </div>
- <div class="col-sm-6">
- <h2>Issues</h2>
- <ul>
- <li><a href="https://github.com/GarageGames/Torque3D/issues/new">Report an issue</a></li>
- <li><a href="https://github.com/GarageGames/Torque3D/issues?milestone=2">Issues for next milestone</a></li>
- <li><a href="https://github.com/GarageGames/Torque3D/issues?labels=Final+review">Changes for final review</a></li>
- <li><a href="http://garagegames.uservoice.com/forums/178972-torque-3d-mit/filters/top">Feature requests</a></li>
- </ul>
- </div>
- </div>
- </div>
- {% if site.posts != empty %}
- <div class="break"></div>
- <div class="container">
- <div class="imgbanner row">
- <div class="col-sm-12">
- <img src="{{page.root}}/img/banner1.jpg"></img>
- </div>
- </div>
- <div class="row">
- <div class="col-sm-12">
- <h2>Recent news</h2>
- {% for post in site.posts limit:3 %}
- <span class="date">{{post.date | date_to_string}}</span>
- <a href="{{page.root}}{{post.url}}"><span class="post-title">{{post.title}}</span></a>
- <p>{{ post.content | strip_html | truncatewords: 40 }}</p>
- {% endfor %}
- <a class="pull-right" href="{{page.root}}/news">See all <i class="fa fa-angle-right"></i></a>
- </div>
- </div>
- </div>
- {% endif %}
- <script type="text/javascript" src="{{page.root}}/js/jquery.cycle.all.js"></script>
- <script type="text/javascript">
- $(document).ready(function() {
- var images = {
- 1: 'Deadly Matter by Studio Dim Sum',
- 2: 'Airship Dragoon by YorkshireRifes',
- 3: 'Deadly Matter by Studio Dim Sum',
- 4: 'Life is Feudal',
- 5: 'Frozen Endzone by Mode 7',
- 6: 'The Reef by QUT',
- 7: 'By Felix Westin',
- 8: 'By Felix Westin',
- 9: 'BeamNG.drive by BeamNG',
- 10: 'Re-Spawn by Gobbo Games',
- 11: 'Blood & Mana',
- 12: 'Villagers and Heroes by Mad Otter Games',
- 13: 'Villagers and Heroes by Mad Otter Games',
- 14: 'Villagers and Heroes by Mad Otter Games',
- };
- function shuffle(o) {
- for(var j, x, i = o.length; i; j = Math.floor(Math.random() * i), x = o[--i], o[i] = o[j], o[j] = x);
- return o;
- }
- function createBreaks() {
- var breaks = $('div.break');
- var delay = 0;
- breaks.each(function(i) {
- // Shuffle the list of pictures that will appear in each break.
- var ids = shuffle(Object.keys(images));
- for(var i = 0; i < ids.length; i++) {
- $(this).append($('<img>')
- .attr('src', '{{page.root}}/img/banner'+ids[i]+'.jpg')
- .attr('title', images[ids[i]]));
- }
- $(this).cycle({fx: 'fade', delay: delay});
- delay += 5000 / breaks.length;
- });
- };
- createBreaks();
- });
- </script>
|