Blender Git Commit Log
Git Commits -> Revision 0247ee5
Revision 0247ee5 by Jacques Lucke (master) April 20, 2020, 08:58 (GMT) |
Simulations: Add simulation node tree type This implements a new builtin node tree type called `SimulationNodeTree`. It is not yet embedded in the `Simulation` data block. The node tree will initially be used for the new particle nodes system. When the cmake option `WITH_NEW_SIMULATION_TYPE` is enabled, a new `Simulation Editor` is shown in the editors menu (which is just a node editor). This patch does not add entries to the Add Node menu, so it is empty. Reviewers: brecht Differential Revision: https://developer.blender.org/D7287 |
Commit Details:
Full Hash: 0247ee5f5362632eb3e48ccb4c7d7fe33040360a
Parent Commit: eb4e3bb
Lines Changed: +330, -4
5 Added Paths:
/source/blender/nodes/NOD_simulation.h (+34, -0) (View)
/source/blender/nodes/simulation/nodes/node_sim_common.cc (+45, -0) (View)
/source/blender/nodes/simulation/node_simulation_tree.cc (+45, -0) (View)
/source/blender/nodes/simulation/node_simulation_util.cc (+29, -0) (View)
/source/blender/nodes/simulation/node_simulation_util.h (+40, -0) (View)
/source/blender/nodes/simulation/nodes/node_sim_common.cc (+45, -0) (View)
/source/blender/nodes/simulation/node_simulation_tree.cc (+45, -0) (View)
/source/blender/nodes/simulation/node_simulation_util.cc (+29, -0) (View)
/source/blender/nodes/simulation/node_simulation_util.h (+40, -0) (View)
14 Modified Paths:
/source/blender/blenkernel/intern/node.c (+8, -0) (Diff)
/source/blender/editors/include/ED_node.h (+1, -0) (Diff)
/source/blender/editors/space_node/CMakeLists.txt (+4, -0) (Diff)
/source/blender/editors/space_node/drawnode.c (+9, -0) (Diff)
/source/blender/editors/space_node/node_edit.c (+6, -0) (Diff)
/source/blender/editors/space_node/node_group.c (+7, -2) (Diff)
/source/blender/editors/space_node/space_node.c (+5, -0) (Diff)
/source/blender/makesdna/DNA_node_types.h (+1, -0) (Diff)
/source/blender/makesrna/intern/rna_nodetree.c (+63, -2) (Diff)
/source/blender/makesrna/RNA_access.h (+2, -0) (Diff)
/source/blender/nodes/CMakeLists.txt (+7, -0) (Diff)
/source/blender/nodes/intern/node_common.h (+8, -0) (Diff)
/source/blender/nodes/intern/node_util.h (+8, -0) (Diff)
/source/blender/nodes/NOD_common.h (+8, -0) (Diff)
/source/blender/editors/include/ED_node.h (+1, -0) (Diff)
/source/blender/editors/space_node/CMakeLists.txt (+4, -0) (Diff)
/source/blender/editors/space_node/drawnode.c (+9, -0) (Diff)
/source/blender/editors/space_node/node_edit.c (+6, -0) (Diff)
/source/blender/editors/space_node/node_group.c (+7, -2) (Diff)
/source/blender/editors/space_node/space_node.c (+5, -0) (Diff)
/source/blender/makesdna/DNA_node_types.h (+1, -0) (Diff)
/source/blender/makesrna/intern/rna_nodetree.c (+63, -2) (Diff)
/source/blender/makesrna/RNA_access.h (+2, -0) (Diff)
/source/blender/nodes/CMakeLists.txt (+7, -0) (Diff)
/source/blender/nodes/intern/node_common.h (+8, -0) (Diff)
/source/blender/nodes/intern/node_util.h (+8, -0) (Diff)
/source/blender/nodes/NOD_common.h (+8, -0) (Diff)