Jacob Merrill
Jacob Merrill
do you know python? navmesh.findpath() is very handy On Sep 25, 2017 9:56 AM, "Jesusemora" wrote: > The Steering actuator has an option to follow a target object, but this...
if type(target) is object: convert to vector proceed assuming input is vector? On Oct 4, 2017 6:41 PM, "Jesusemora" wrote: > i looked into the code in source/gameengine/ketji/KX_steeringactuator.cpp > m_target...
I wonder if we can unload the module using PY?
``` import sys del sys.modules['ModuleName'] ``` also see - in Python 3, reload was moved to the imp module. In 3.4, imp was deprecated in favor of importlib, and reload...
@Petermhen set up a object pool and reuse the agents (or in your case bullets) this is a common design pattern https://en.wikipedia.org/wiki/Object_pool_pattern 2.5x has about 1/15th the power of 3.x...
https://www.youtube.com/watch?v=uBzqbKEl9zI
Cascaded sun shadows is a good option On Wed, Sep 26, 2018, 6:06 PM Rafael Tavares wrote: > yes it is an interesting option, but, this can be done easily...
Blender itself has tons of import / export addons shipped with it by default that py or a button click can call. using the BPY api + a little time...
fire - you can use blender in VR -> create your assets in VR -> export them in any format to godot -> open them in godots VR tools /...
compound is super useful for setting up character collisions or vehicles, we have a root, and the child shapes can be remove parent / updated / re-parented to a core...