Difference between revisions of "Editing scene"
Line 83: | Line 83: | ||
</li> | </li> | ||
<li>Start the abducted story in XStoryPlayer and the cell doors should be slowly opening.</li> | <li>Start the abducted story in XStoryPlayer and the cell doors should be slowly opening.</li> | ||
+ | <li>Last step is to add some ambient sound to the scene. | ||
+ | Get the <code>alien_abient1.mp3</code> from the previous tutorial and place a copy of it in the <code>./pack/pack_abducted/scenes/sounds/alien</code> directory.<br> | ||
+ | Now open the scene.ma and add a small cube called <code>sound1Shape</code> on the ceiling of the cell. Save it<br> | ||
+ | Now open the <code>scene.ini</code> file and add: | ||
+ | rb "sound1Shape" | ||
+ | { | ||
+ | media | ||
+ | { | ||
+ | elem[0] | ||
+ | { | ||
+ | filename = "scenes/sounds/alien/alien_abient1.mp3"; | ||
+ | |||
+ | type = AUDIO; // Audio file (not movie) | ||
+ | stream = true; // Stream sound (for .wav set to false) | ||
+ | pos3d = true; // We use 3d sound | ||
+ | pos3d_min = 5.0; // Sound start decaying after this distance | ||
+ | start = true; // Start sound automatically | ||
+ | loop = true; // Loop sound | ||
+ | volume = 1.0; // The volume | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | This will create a sound at the location of the object. | ||
+ | </li> | ||
+ | <li>Start the abducted story in XStoryPlayer and you should hear a spaceship sound.</li> | ||
</ol> | </ol> |
Revision as of 12:16, 12 January 2015
In this tutorial we will change the 'Spaceship' scene so that: there are colliders, the door of the cell can open, there are some objects in the cell, there is background sound.
The final result can also be found in the 'Tutorial resource pack', but it would be best to create it using this tutorial yourself.
- Open the spaceship scene in Maya. Currently only the floor collides. We also want the walls to collide.
Add a few boxes (cubes) around the cell like this:
- Now open the
scene.ini
file and add:rb "collShape1" { physics { elem[0] {mesh = "collShape1";} elem[1] {mesh = "collShape2";} elem[2] {mesh = "collShape3";} elem[3] {mesh = "collShape4";} } }
This code says that the rigidbody "collShape1" contains 4 physics (collider) objects. The default type for the objects is a BOX.
Maya objects are render objects by default. This means that any object you create in Maya, that is not described in the .ini file, will show up as a rendered object.
Because now the collider Maya objects are referenced they are not rendered to the scene anymore. - Start the abducted story in XStoryPlayer and the walls should collide now.
- Now we want the cell doors to be able to open. Move aside the two larger colliders we created in the previous step and create two extra colliders for the cell doors like this:
Make sure the cell door colliders do not touch the wall colliders (make them about 10 cm away from wall), otherwise they get stuck. - Now open the
scene.ini
file and add:rb "cell1Shape" { link { type = PRISM; // Translating (REVOL is rotate) axis0 = Y; // Axis of translation axis1 = Z; // Opposite axis Fc = 1.0; // Friction kd = 20.0; // damping Ks = 5.0; // Spring that makes door move Ls = 6.0; // Position along Y-axis that spring is attached } render {} // Door is rendered physics { mat_type = NONE; // No collision sounds density = 200; // Not to heavy elem[0] {mesh = "cell1CollShape";} // The collider we just created } } rb "cell2Shape" { link { type = PRISM; axis0 = Y; axis1 = Z; Fc = 1.0; kd = 20.0; Ks = 5.0; Ls = 6.0; } render {} physics { mat_type = NONE; density = 200; elem[0] {mesh = "cell2CollShape";} } }
This code says that the two cell door are now rigidbodies that are translating long y-axis.
- Start the abducted story in XStoryPlayer and the cell doors should be slowly opening.
- Last step is to add some ambient sound to the scene.
Get the
alien_abient1.mp3
from the previous tutorial and place a copy of it in the./pack/pack_abducted/scenes/sounds/alien
directory.
Now open the scene.ma and add a small cube calledsound1Shape
on the ceiling of the cell. Save it
Now open thescene.ini
file and add: rb "sound1Shape" { media { elem[0] { filename = "scenes/sounds/alien/alien_abient1.mp3"; type = AUDIO; // Audio file (not movie) stream = true; // Stream sound (for .wav set to false) pos3d = true; // We use 3d sound pos3d_min = 5.0; // Sound start decaying after this distance start = true; // Start sound automatically loop = true; // Loop sound volume = 1.0; // The volume } } } This will create a sound at the location of the object. - Start the abducted story in XStoryPlayer and you should hear a spaceship sound.