Book Image

CryENGINE 3 Cookbook

By : Dan Tracy, Sean P Tracy (USD)
Book Image

CryENGINE 3 Cookbook

By: Dan Tracy, Sean P Tracy (USD)

Overview of this book

With every successive console generation, the cost, time, and complexity of developing games has grown. Meet CryENGINE3, a middleware engine that is the perfect fit for most developers allowing users to exceed current generation quality standards while using less people and time than ever thought possible.The CryENGINE3 CookBook is packed full of recipes for junior and senior developers alike. It covers everything from creating photo realistic architectural visualizations to implementing advanced physics such as ragdoll and tornado effects. Topics covered include the sandbox, level layout, environment creation, AI, character creation, creating vehicles, and game logic. Every recipe is designed to add AAA quality to your games. The CryENGINE3 SDK has many tools immediately available to developers of all disciplines. For designers the book has recipes for building up your own levels and populating your levels with intelligent AI and photo realistic assets. For artists we have recipes for practical workflow tools and techniques used when working with the advanced CryENGINE shaders and materials. For animators we have recipes that will bring your creations to life using skinned characters and advanced animation systems like locomotion groups. Finally for programmers we have recipes that show how to employ the core mechanics behind entities such as vehicles and weapons while also utilizing the strengths of the physics engine to create a unique and exciting game.
Table of Contents (18 chapters)
CryENGINE 3 Cookbook
Credits
About the Authors
www.PacktPub.com
Preface
Index

Editing and merging solids


The next step is modifying your solids to what you want them to portray. We will be exploring the possibilities of both editing the solids as well as setting them up to be exported for an external 3D application, such as 3DS Max.

Getting ready

  • Before we begin, you must have Sandbox 3 open

  • Then open My_Level.cry

  • Create a Box Solid with dimensions of 30mx30mx30m

How to do it...

For those who are familiar with DCC tools, such as 3DS Max or Maya, Editing Mode should look very familiar. It allows you to modify the shape of the solid by changing the location of vertices, edges, faces, and polygons. For those who are unfamiliar with it, we will now demonstrate how to turn this Cube into a very simplistic house-like structure:

  1. Start by selecting your object and clicking Editing Mode.

  2. Change the Selection Type to Polygon.

  3. Select the top side of the cube.

  4. Under the Sub Object Edit roll out, select Face [Split].

  5. Change your Selection Type from Polygon to Vertex.

  6. Select the top most...