Search icon
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Torque 3D Game Development Cookbook

You're reading from  Torque 3D Game Development Cookbook

Product type Book
Published in Jan 2013
Publisher Packt
ISBN-13 9781849693547
Pages 380 pages
Edition 1st Edition
Languages
Author (1):
DAVID WYAND DAVID WYAND
Profile icon DAVID WYAND

Table of Contents (17) Chapters

Torque 3D Game Development Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
1. TorqueScript: The Only Script You Need to Know 2. Working with Your Editors 3. Graphical User Interface 4. Camera and Mouse Controls 5. Your Graphics Evolved 6. Make That Sound Happen 7. Game Objects 8. Multiplayer Servers 9. Importance of Networking 10. Miscellaneous Gameplay Features Index

Adjusting the fire spread of a weapon


Some ranged weapons (those that fire a projectile) are more accurate than others. Of the weapons included in the Torque 3D templates, the pistol is very accurate while the assault rifle has some bullet trajectory drift. This is known as projectile spread. In this recipe we will learn how to set up projectile spread of a projectile weapon.

How to do it...

Start by making sure the ShapeBaseImageData Datablock instance of your projectile weapon has its class property set to WeaponImage. This gives the weapon access to Torque 3D's standard weapon handling methods.

The next step is to add the projectileSpread dynamic property to your weapon's Datablock instance and give it a value greater than zero to introduce some spread. The Lurker weapon included with the Torque 3D templates is set up as follows:

datablock ShapeBaseImageData(LurkerWeaponImage)
{
   // Add the WeaponImage namespace as a parent, WeaponImage
   // namespace provides some hooks into the inventory...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime}