mirror of
https://github.com/Relintai/pandemonium_engine_easy_charts.git
synced 2024-11-14 10:17:24 +01:00
d46e099717
* Fixed ScatterChart to work like LineChart when are_values_columns is true * Fixed labeling spaguetti and added offset. * Fixed indentation to match GDScript style guide * Fix distances calculations Note that I removed the origin_at_zero conditional at calculate_coordinates because I already fix y_margin_min to 0 at structure_datas. * Add missing features to ScatterChart I added the missing features from LineChart to ScatterChart (like treshold and some properties) in preparation to creation of a Parent Class common to both. This way the changes can be traced easily. * Add BaseClass for Scatter and Line Charts * Changes to property_list getter * Rename ScatterChartBase.gd to scatter_chart_base.gd * Filenames changed to match GDscript Style Guide From Godot so it doesn't break the links. * Fixed some dependencies on chart and chart2D
55 lines
1.5 KiB
Plaintext
55 lines
1.5 KiB
Plaintext
[gd_scene load_steps=7 format=2]
|
|
|
|
[ext_resource path="res://addons/easy_charts/ScatterChart3D/scatter_chart3D.gd" type="Script" id=1]
|
|
[ext_resource path="res://addons/easy_charts/Utilities/Point/point_data.tscn" type="PackedScene" id=2]
|
|
|
|
|
|
|
|
[sub_resource type="SpatialMaterial" id=1]
|
|
flags_unshaded = true
|
|
|
|
[sub_resource type="PlaneMesh" id=2]
|
|
material = SubResource( 1 )
|
|
size = Vector2( 20, 20 )
|
|
|
|
[sub_resource type="SphereMesh" id=3]
|
|
|
|
[sub_resource type="SpatialMaterial" id=4]
|
|
albedo_color = Color( 0, 1, 0.156863, 1 )
|
|
|
|
[node name="ScatterChart3D" type="Spatial"]
|
|
script = ExtResource( 1 )
|
|
function_colors = [ "#1e1e1e", "#1e1e1e", "#1e1e1e", "#1e1e1e" ]
|
|
|
|
[node name="MeshInstance" type="MeshInstance" parent="."]
|
|
transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -1, 0 )
|
|
mesh = SubResource( 2 )
|
|
material/0 = null
|
|
|
|
[node name="Chart" type="Spatial" parent="."]
|
|
|
|
[node name="Point" type="MeshInstance" parent="Chart"]
|
|
mesh = SubResource( 3 )
|
|
material/0 = SubResource( 4 )
|
|
|
|
[node name="Camera" type="Camera" parent="."]
|
|
transform = Transform( 0.707107, -0.40558, 0.579228, 0, 0.819152, 0.573577, -0.707107, -0.40558, 0.579228, 10, 15, 10 )
|
|
projection = 1
|
|
current = true
|
|
size = 30.0
|
|
near = 0.01
|
|
|
|
[node name="OmniLight" type="OmniLight" parent="."]
|
|
transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 9, 0 )
|
|
|
|
[node name="PointData" parent="." instance=ExtResource( 2 )]
|
|
|
|
[node name="PointData" parent="PointData" index="0"]
|
|
visible = false
|
|
margin_left = 47.2074
|
|
margin_top = -150.915
|
|
margin_right = 47.0714
|
|
margin_bottom = -150.115
|
|
|
|
[editable path="PointData"]
|