We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1cf588 commit e6049a8Copy full SHA for e6049a8
source/inochi2d/core/nodes/drivers/package.d
@@ -17,10 +17,9 @@ public import inochi2d.core.nodes.drivers.simplephysics;
17
*/
18
@TypeId("Driver")
19
abstract class Driver : Node {
20
-private:
+protected:
21
this() { }
22
23
-protected:
24
/**
25
Constructs a new Driver node
26
source/inochi2d/core/nodes/package.d
@@ -74,7 +74,6 @@ void inClearUUIDs() {
74
@TypeId("Node")
75
class Node : ISerializable {
76
private:
77
- this() { }
78
79
@Ignore
80
Puppet puppet_;
@@ -98,6 +97,8 @@ private:
98
97
string nodePath_;
99
100
protected:
+ this() { }
101
+
102
bool preProcessed = false;
103
bool postProcessed = false;
104
0 commit comments