User Tools

Site Tools


hpl3:game:faq

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
hpl3:game:faq [2013/10/04 12:13]
sredmond
hpl3:game:faq [2015/09/17 10:24] (current)
ian.thomas
Line 2: Line 2:
  
  
-===== Troubleshooting GUI =====+===== Scripting ​=====
  
  
-**Q: Why can'​t ​I render something ​to a GUI?** \\  +**Q:  When an entity with many bodies is attached to a sticky area it doesn'​t ​work to make it static collider?** \\  
-A: Try these steps+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.
  
  
-    - Make sure the material for the GUI sub mesh is transparent. Ask modeller to double check if unsure +**Q: MoveObject does not work properly with an entity with two or more bodies?** \\  
-    - Ensure that correct Submesh is set up using the model editor +A: Specify which body to move by adding ​it to MainPhysicsBody ​in the model editor ​→ entity settings → Class → Prop_MoveObject.
-    - 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) +
-    - Is your GUI's draw function being called? Put a cLux_AddDebugMessage in there as a test and it should iterate every frame. +
-    - Has the GUI been set as inactive either ​in the editor ​or in script with Terminal_SetGuiActive?​ +
-    - Finally, make sure you are rendering something simple like a label to start before trying to implement a full blown GUI!+
  
  
-===== Scripting =====+**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.** \\  
 +A: Use a temporary variable to store the value in before using it as an argument.
  
  
-**Q:  When an entity with many bodies is atttached to a sticky area it does work to make it a static collider?**   ​\\ A: Use a timer so it is set to static collider half a second or so after it has attached to the sticky areaThe sticky area and static colliders overlaps in usage of some physics settingsso the sticky area needs to be done before you set the body as static.+**Q:** **Oh no! One of my levers have weird interaction. It won't move, or it suddenly inverts the mouse movement!** \\  
 +A: Lever interaction ​is tricky. First try changing ​the entity'​s MoveDirectionIf that doesn'​t help and the problem only occurs when the lever is almost at its max or min positiontry limiting ​the range of the joint in the .ent file.
  
 +===== Audio =====
  
-**Q: MoveObject does not work properly with an entity with two or more bodies?**   ​\\ A: Specify which body to move by adding it to MainPhysicsBody in the model editor → entity settings → Class → Prop_MoveObject.+**Q: My voice subject never ends or never jumps to next sound/line, why?** \\ 
 +Check so that "End After Extra Effect"​ is not checked in the sound'​s properties. (you need to enable advanced mode and press the down arrow by the sound to see this)If that is the case, the audio file you are playing might be looping and therefore never quitting!
  
 +===== GUI =====
  
-**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.**   ​\\ A: Use a temporary variable to store the value in before using it as an argument.+**Q: Why can't I render something ​to a GUI?** \\ 
 +A: Try these steps
  
 +    - Make sure the material for the GUI sub mesh is transparent. Ask modeller to double check if unsure
 +    - Ensure that correct Submesh is set up using the model editor
 +    - 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)
 +    - Is your GUI's draw function being called? Put a cLux_AddDebugMessage in there as a test and it should iterate every frame.
 +    - Has the GUI been set as inactive either in the editor or in script with Terminal_SetGuiActive?​
 +    - Finally, make sure you are rendering something simple like a label to start before trying to implement a full blown GUI!
  
 ===== Modeling ===== ===== Modeling =====
  
 +**Q: I have created a socket but it is not following along with the skeleton** \\
 +A: Make sure that you have not created the socket on a controller bone. These are not used by the engine and will remain at the same postion. Normally you can spot them by the "​_Ctrl"​ suffix. To fix, just create the socket at some other bone.
 +
 +**Q: My export to detail meshes are 100x larger than usual\\
 +**
 +A: You might be using a new exporter that has these issues. in export settings set the units to "​Centimeter"​
  
 ===== Particles ===== ===== Particles =====
  
- +**Q:  Particles does not fade in and out even though I have configured max and min distance?** \\ 
-**Q:  Particles does not fade in and out even though I have configured max and min distance?​** ​ \\ 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. +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.
  
 ===== Level Editing ===== ===== Level Editing =====
hpl3/game/faq.1380888825.txt.gz · Last modified: 2013/10/04 12:13 by sredmond