[Bf-blender-cvs] [7cb2b2fa264] builtin-simulation-nodes: start laying out simulation node files

Jacques Lucke noreply at git.blender.org
Mon Mar 2 13:05:42 CET 2020


Commit: 7cb2b2fa26419f407a0d733939610a760335e24c
Author: Jacques Lucke
Date:   Fri Feb 28 13:27:03 2020 +0100
Branches: builtin-simulation-nodes
https://developer.blender.org/rB7cb2b2fa26419f407a0d733939610a760335e24c

start laying out simulation node files

===================================================================

A	source/blender/nodes/NOD_simulation.h
A	source/blender/nodes/simulation/node_sim_tree.cc
A	source/blender/nodes/simulation/node_sim_util.cc
A	source/blender/nodes/simulation/node_sim_util.h
A	source/blender/nodes/simulation/nodes/node_sim_particle_simulation.cc

===================================================================

diff --git a/source/blender/nodes/NOD_simulation.h b/source/blender/nodes/NOD_simulation.h
new file mode 100644
index 00000000000..2695f9cfc57
--- /dev/null
+++ b/source/blender/nodes/NOD_simulation.h
@@ -0,0 +1,8 @@
+#ifndef __NOD_SIMULATION_H__
+#define __NOD_SIMULATION_H__
+
+extern struct bNodeTreeType *ntreeType_Simulation;
+
+void register_node_tree_type_sim(void);
+
+#endif /* __NOD_SIMULATION_H__ */
\ No newline at end of file
diff --git a/source/blender/nodes/simulation/node_sim_tree.cc b/source/blender/nodes/simulation/node_sim_tree.cc
new file mode 100644
index 00000000000..8ef4ebb77a3
--- /dev/null
+++ b/source/blender/nodes/simulation/node_sim_tree.cc
@@ -0,0 +1,3 @@
+void register_node_tree_type_sim(void)
+{
+}
\ No newline at end of file
diff --git a/source/blender/nodes/simulation/node_sim_util.cc b/source/blender/nodes/simulation/node_sim_util.cc
new file mode 100644
index 00000000000..e101a1554f8
--- /dev/null
+++ b/source/blender/nodes/simulation/node_sim_util.cc
@@ -0,0 +1,4 @@
+#ifndef __NODE_SIMULATION_UTIL_H__
+#define __NODE_SIMULATION_UTIL_H__
+
+#endif /* __NODE_SIMULATION_UTIL_H__ */
\ No newline at end of file
diff --git a/source/blender/nodes/simulation/node_sim_util.h b/source/blender/nodes/simulation/node_sim_util.h
new file mode 100644
index 00000000000..e69de29bb2d
diff --git a/source/blender/nodes/simulation/nodes/node_sim_particle_simulation.cc b/source/blender/nodes/simulation/nodes/node_sim_particle_simulation.cc
new file mode 100644
index 00000000000..e69de29bb2d



More information about the Bf-blender-cvs mailing list