skip to content
Frictional Game Wiki
User Tools
Register
Log In
Site Tools
Search
Tools
Show page
Old revisions
Backlinks
Recent Changes
Media Manager
Sitemap
Log In
Register
>
Recent Changes
Media Manager
Sitemap
Trace:
hpl3:game:faq
<h1>FAQ</h1> <div class="level1"> </div> <h2>Scripting</h2> <div class="level2"> <p> <b>Q: When an entity with many bodies is atttached to a sticky area it does work to make it a static collider?</b> <br/> A: Use a timer so it is set to static collider half a second or so after it has attached to the sticky area. The sticky area and static colliders overlaps in usage of some physics settings, so the sticky area needs to be done before you set the body as static. </p> <p> <b>Q: MoveObject does not work properly with an entity with two or more bodies?</b> <br/> A: Specify which body to move by adding it to MainPhysicsBody in the model editor → entity settings → Class → Prop_MoveObject. </p> <p> <b>Q: Using a function returning a value from C++ (such as GetName() ) as an argument to a callback doesn't give the callback the correct value.</b> <br/> A: Use a temporary variable to store the value in before using it as an argument. </p> <p> <b>Q:</b> <b>Oh no! One of my levers have weird interaction. It won't move, or it suddenly inverts the mouse movement!</b> <br/> A: Lever interaction is tricky. First try changing the entity's MoveDirection. If that doesn't help and the problem only occurs when the lever is almost at its max or min position, try limiting the range of the joint in the .ent file. </p> </div> <h2>GUI</h2> <div class="level2"> <p> <b>Q: Why can't I render something to a GUI?</b> <br/> A: Try these steps </p> <ol> <li class="level1"> Make sure the material for the GUI sub mesh is transparent. Ask modeller to double check if unsure</li> <li class="level2"> Ensure that correct Submesh is set up using the model editor</li> <li class="level2"> Ensure that you are not changing the material of the Submesh in code (For instance, the keypad in 0.6 changes its ilum texture, but the specific mesh must be called)</li> <li class="level2"> Is your GUI's draw function being called? Put a cLux_AddDebugMessage in there as a test and it should iterate every frame.</li> <li class="level2"> Has the GUI been set as inactive either in the editor or in script with Terminal_SetGuiActive?</li> <li class="level2"> Finally, make sure you are rendering something simple like a label to start before trying to implement a full blown GUI!</li> </ol> </div> <h2>Modeling</h2> <div class="level2"> </div> <h2>Particles</h2> <div class="level2"> <p> <b>Q: Particles does not fade in and out even though I have configured max and min distance?</b> <br/> A: Check the colour setting for the particle and make sure that the alpha is not lowered. If the particle should be fainter, fade it with the colour setting instead (changing from white towards black makes the particle less visible). The alpha can then be left at full and the distance fade will work properly. </p> </div> <h2>Level Editing</h2> <div class="level2"> <p> <b>Q: After loading a map I can't pan the camera only rotate?</b> <br/> A: The Controller mode is probably set to Fly. Set it back to Maya by clicking on View button at the top left → Controller → Maya. </p> </div>
hpl3/game/faq.1385702161.txt.gz
· Last modified: 2013/11/29 05:16 by
thomas
Page Tools
Show page
Old revisions
Backlinks
Export to PDF
Back to top