You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#[derive(Debug,Clone,PartialEq,Deserialize,Serialize)]/// Represents different types of layers.pubenumLayerDataType{/// A layer that wraps a [FolderLayer] struct.Folder(FolderLayer),/// A layer that wraps a [ShapeLayer] struct.Shape(ShapeLayer),/// A layer that wraps a [TextLayer] struct.Text(TextLayer),/// A layer that wraps an [ImageLayer] struct.Image(ImageLayer),Imaginate(ImaginateLayer),}
FolderLayer, ShapeLayer, TextLayer, and ImageLayer live in /graphene. Each of these structs (saving FolderLayer for another issue) should be converted into nodes using the new node system in /node-graph.
How does this approach relate to the separation between "document graph" and "proto graph"?
Can we continue to reference the other data structures defined in /graphene which are used by those three (four) structs once they are ported to nodes in /node-graph?
Where do these new vector-editing-specific nodes go in the node graph folder structure?
Any other things to be aware of?
The text was updated successfully, but these errors were encountered:
Task: Switch LayerDataType struct values to nodes
,FolderLayer
ShapeLayer
,TextLayer
, andImageLayer
live in/graphene
. Each of these structs (savingFolderLayer
for another issue) should be converted into nodes using the new node system in/node-graph
.Questions for @TrueDoctor:
/graphene
which are used by those three (four) structs once they are ported to nodes in/node-graph
?The text was updated successfully, but these errors were encountered: