Blender Git Commit Log
Git Commits -> Revision d0eafff
Revision d0eafff by Jacques Lucke (builtin-simulation-nodes, functions, functions-experimental-refactor, particle-solver-dev, simulation-tree) September 6, 2019, 09:21 (GMT) |
Initial Falloff implementation |
Commit Details:
Full Hash: d0eafffed409c57faebf2489353c6d0adefe07cd
Parent Commit: 6163ce3
Lines Changed: +408, -4
6 Added Paths:
/release/scripts/startup/nodes/function_nodes/falloffs.py (+13, -0) (View)
/source/blender/blenkernel/BKE_falloff.hpp (+82, -0) (View)
/source/blender/functions/functions/falloffs.cpp (+38, -0) (View)
/source/blender/functions/functions/falloffs.hpp (+11, -0) (View)
/source/blender/functions/types/falloff.cpp (+25, -0) (View)
/source/blender/functions/types/falloff.hpp (+21, -0) (View)
/source/blender/blenkernel/BKE_falloff.hpp (+82, -0) (View)
/source/blender/functions/functions/falloffs.cpp (+38, -0) (View)
/source/blender/functions/functions/falloffs.hpp (+11, -0) (View)
/source/blender/functions/types/falloff.cpp (+25, -0) (View)
/source/blender/functions/types/falloff.hpp (+21, -0) (View)
17 Modified Paths:
/release/scripts/startup/nodes/bparticle_nodes/gravity_force.py (+1, -0) (Diff)
/release/scripts/startup/nodes/sockets.py (+24, -0) (Diff)
/release/scripts/startup/nodes/types.py (+1, -0) (Diff)
/source/blender/blenkernel/CMakeLists.txt (+1, -0) (Diff)
/source/blender/functions/backends/cpp/cpp_type_info.hpp (+71, -0) (Diff)
/source/blender/functions/backends/llvm/llvm_type_info.hpp (+73, -0) (Diff)
/source/blender/functions/CMakeLists.txt (+4, -0) (Diff)
/source/blender/functions/FN_functions.hpp (+1, -0) (Diff)
/source/blender/functions/FN_types.hpp (+1, -0) (Diff)
/source/blender/functions/frontends/data_flow_nodes/mappings/node_inserters.cpp (+2, -0) (Diff)
/source/blender/functions/frontends/data_flow_nodes/mappings/socket_loaders.cpp (+11, -0) (Diff)
/source/blender/functions/frontends/data_flow_nodes/mappings/type_mappings.cpp (+2, -0) (Diff)
/source/blender/functions/functions/lists.cpp (+1, -0) (Diff)
/source/blender/functions/types/initialization.cpp (+1, -0) (Diff)
/source/blender/simulations/bparticles/forces.cpp (+5, -1) (Diff)
/source/blender/simulations/bparticles/forces.hpp (+7, -2) (Diff)
/source/blender/simulations/bparticles/node_frontend.cpp (+12, -1) (Diff)
/release/scripts/startup/nodes/sockets.py (+24, -0) (Diff)
/release/scripts/startup/nodes/types.py (+1, -0) (Diff)
/source/blender/blenkernel/CMakeLists.txt (+1, -0) (Diff)
/source/blender/functions/backends/cpp/cpp_type_info.hpp (+71, -0) (Diff)
/source/blender/functions/backends/llvm/llvm_type_info.hpp (+73, -0) (Diff)
/source/blender/functions/CMakeLists.txt (+4, -0) (Diff)
/source/blender/functions/FN_functions.hpp (+1, -0) (Diff)
/source/blender/functions/FN_types.hpp (+1, -0) (Diff)
/source/blender/functions/frontends/data_flow_nodes/mappings/node_inserters.cpp (+2, -0) (Diff)
/source/blender/functions/frontends/data_flow_nodes/mappings/socket_loaders.cpp (+11, -0) (Diff)
/source/blender/functions/frontends/data_flow_nodes/mappings/type_mappings.cpp (+2, -0) (Diff)
/source/blender/functions/functions/lists.cpp (+1, -0) (Diff)
/source/blender/functions/types/initialization.cpp (+1, -0) (Diff)
/source/blender/simulations/bparticles/forces.cpp (+5, -1) (Diff)
/source/blender/simulations/bparticles/forces.hpp (+7, -2) (Diff)
/source/blender/simulations/bparticles/node_frontend.cpp (+12, -1) (Diff)