File tree Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change
1
+ /**
2
+ * The PCUIGraph module is an extension of the PlayCanvas User Interface (PCUI) framework. It
3
+ * provides a new PCUI Element type for building interactive, node-based graphs.
4
+ *
5
+ * Key features include:
6
+ *
7
+ * - Scalable and customizable node-based graphs for visualizing complex data.
8
+ * - Interactive elements such as draggable nodes, clickable edges, and zoomable views.
9
+ * - Easy integration within a PCUI-based user interface.
10
+ *
11
+ * Whether it's for displaying network topologies, process flows, or complex relational data,
12
+ * PCUIGraph provides a robust and flexible solution for integrating graph visualizations into your
13
+ * web projects.
14
+ *
15
+ * @module PCUIGraph
16
+ */
17
+
1
18
import { deepCopyFunction } from './util.js' ;
2
19
import GraphView from './graph-view.js' ;
3
20
import { GRAPH_ACTIONS , DEFAULT_CONFIG } from './constants.js' ;
You can’t perform that action at this time.
0 commit comments