添加了教育平台
This commit is contained in:
46
Mods/教育平台/Scripts/CourseElement.cs
Normal file
46
Mods/教育平台/Scripts/CourseElement.cs
Normal file
@@ -0,0 +1,46 @@
|
||||
using Godot;
|
||||
using System;
|
||||
using BITKit;
|
||||
|
||||
namespace BITFactory;
|
||||
public partial class CourseElement : Node
|
||||
{
|
||||
private static Node CurrentScene;
|
||||
[Export]
|
||||
public PackedScene CourseScene;
|
||||
|
||||
[Export] private Label courseLabel;
|
||||
[Export] private Button entryButton;
|
||||
|
||||
[Export]
|
||||
public string CourseName
|
||||
{
|
||||
get => _courseName;
|
||||
set=>courseLabel.Text =_courseName= value;
|
||||
}
|
||||
|
||||
private string _courseName;
|
||||
public override void _Ready()
|
||||
{
|
||||
//entryButton.Connect(nameof(Button.press))
|
||||
entryButton.Pressed += EntryCourse;
|
||||
}
|
||||
|
||||
private void EntryCourse()
|
||||
{
|
||||
if (CourseScene is null)
|
||||
{
|
||||
return;
|
||||
}
|
||||
if (CurrentScene is not null)
|
||||
{
|
||||
BIT4Log.Log<CourseElement>($"正在释放课程:\t{CurrentScene.Name}");
|
||||
CurrentScene.QueueFree();
|
||||
BIT4Log.Log<CourseElement>($"已释放当前课程:\t{CurrentScene.Name}");
|
||||
}
|
||||
CurrentScene = CourseScene.Instantiate();
|
||||
GetTree().Root.AddChild(CurrentScene);
|
||||
UXService.Open(CurrentScene as Control);
|
||||
BIT4Log.Log<CourseElement>($"已加载新的课程:\t{CurrentScene.Name}");
|
||||
}
|
||||
}
|
182
Mods/教育平台/Templates/选择课程.tscn
Normal file
182
Mods/教育平台/Templates/选择课程.tscn
Normal file
@@ -0,0 +1,182 @@
|
||||
[gd_scene load_steps=4 format=3 uid="uid://dwdlewpjrt8pf"]
|
||||
|
||||
[ext_resource type="Texture2D" uid="uid://k3xy782w6pa0" path="res://BITKit/Art/Shapes/icon_squad_rounded-4px.png" id="1_3jo82"]
|
||||
[ext_resource type="Script" path="res://Mods/教育平台/Scripts/CourseElement.cs" id="2_bgpgb"]
|
||||
[ext_resource type="Texture2D" uid="uid://cqyvxwbejuica" path="res://Mods/工业数据采集与分析应用分享/Arts/Images/工业互联网标识解析.jpg" id="3_bknr3"]
|
||||
|
||||
[node name="NinePatchRect" type="NinePatchRect" node_paths=PackedStringArray("courseLabel", "entryButton")]
|
||||
self_modulate = Color(0, 0, 0, 0.784314)
|
||||
custom_minimum_size = Vector2(1024, 200)
|
||||
texture = ExtResource("1_3jo82")
|
||||
patch_margin_left = 16
|
||||
patch_margin_top = 16
|
||||
patch_margin_right = 16
|
||||
patch_margin_bottom = 16
|
||||
script = ExtResource("2_bgpgb")
|
||||
courseLabel = NodePath("MarginContainer/HBoxContainer/VBoxContainer/Label")
|
||||
entryButton = NodePath("MarginContainer/HBoxContainer/MarginContainer/VBoxContainer2/Button")
|
||||
CourseName = "机器人手动操控"
|
||||
|
||||
[node name="MarginContainer" type="MarginContainer" parent="."]
|
||||
layout_mode = 1
|
||||
anchors_preset = 15
|
||||
anchor_right = 1.0
|
||||
anchor_bottom = 1.0
|
||||
grow_horizontal = 2
|
||||
grow_vertical = 2
|
||||
theme_override_constants/margin_left = 16
|
||||
theme_override_constants/margin_top = 16
|
||||
theme_override_constants/margin_right = 16
|
||||
theme_override_constants/margin_bottom = 16
|
||||
|
||||
[node name="HBoxContainer" type="HBoxContainer" parent="MarginContainer"]
|
||||
layout_mode = 2
|
||||
theme_override_constants/separation = 32
|
||||
|
||||
[node name="VBoxContainer" type="VBoxContainer" parent="MarginContainer/HBoxContainer"]
|
||||
layout_mode = 2
|
||||
size_flags_horizontal = 3
|
||||
|
||||
[node name="Label" type="Label" parent="MarginContainer/HBoxContainer/VBoxContainer"]
|
||||
layout_mode = 2
|
||||
theme_type_variation = &"HeaderMedium"
|
||||
text = "机器人手动操控"
|
||||
|
||||
[node name="HSeparator" type="HSeparator" parent="MarginContainer/HBoxContainer/VBoxContainer"]
|
||||
layout_mode = 2
|
||||
theme_override_constants/separation = 32
|
||||
|
||||
[node name="HBoxContainer" type="HBoxContainer" parent="MarginContainer/HBoxContainer/VBoxContainer"]
|
||||
layout_mode = 2
|
||||
size_flags_vertical = 3
|
||||
|
||||
[node name="VBoxContainer" type="VBoxContainer" parent="MarginContainer/HBoxContainer/VBoxContainer/HBoxContainer"]
|
||||
layout_mode = 2
|
||||
size_flags_horizontal = 3
|
||||
|
||||
[node name="Label" type="Label" parent="MarginContainer/HBoxContainer/VBoxContainer/HBoxContainer/VBoxContainer"]
|
||||
layout_mode = 2
|
||||
size_flags_vertical = 6
|
||||
text = "分享代码"
|
||||
|
||||
[node name="Label2" type="Label" parent="MarginContainer/HBoxContainer/VBoxContainer/HBoxContainer/VBoxContainer"]
|
||||
layout_mode = 2
|
||||
size_flags_vertical = 6
|
||||
text = "#2196F3"
|
||||
|
||||
[node name="VBoxContainer2" type="VBoxContainer" parent="MarginContainer/HBoxContainer/VBoxContainer/HBoxContainer"]
|
||||
layout_mode = 2
|
||||
size_flags_horizontal = 3
|
||||
|
||||
[node name="Label" type="Label" parent="MarginContainer/HBoxContainer/VBoxContainer/HBoxContainer/VBoxContainer2"]
|
||||
layout_mode = 2
|
||||
size_flags_vertical = 6
|
||||
text = "章节数量"
|
||||
|
||||
[node name="Label2" type="Label" parent="MarginContainer/HBoxContainer/VBoxContainer/HBoxContainer/VBoxContainer2"]
|
||||
layout_mode = 2
|
||||
size_flags_vertical = 6
|
||||
text = "6"
|
||||
|
||||
[node name="VBoxContainer3" type="VBoxContainer" parent="MarginContainer/HBoxContainer/VBoxContainer/HBoxContainer"]
|
||||
layout_mode = 2
|
||||
size_flags_horizontal = 3
|
||||
|
||||
[node name="Label" type="Label" parent="MarginContainer/HBoxContainer/VBoxContainer/HBoxContainer/VBoxContainer3"]
|
||||
layout_mode = 2
|
||||
size_flags_vertical = 6
|
||||
text = "视频数量"
|
||||
|
||||
[node name="Label2" type="Label" parent="MarginContainer/HBoxContainer/VBoxContainer/HBoxContainer/VBoxContainer3"]
|
||||
layout_mode = 2
|
||||
size_flags_vertical = 6
|
||||
text = "7"
|
||||
|
||||
[node name="VBoxContainer4" type="VBoxContainer" parent="MarginContainer/HBoxContainer/VBoxContainer/HBoxContainer"]
|
||||
layout_mode = 2
|
||||
size_flags_horizontal = 3
|
||||
|
||||
[node name="Label" type="Label" parent="MarginContainer/HBoxContainer/VBoxContainer/HBoxContainer/VBoxContainer4"]
|
||||
layout_mode = 2
|
||||
size_flags_vertical = 6
|
||||
text = "设备数量"
|
||||
|
||||
[node name="Label2" type="Label" parent="MarginContainer/HBoxContainer/VBoxContainer/HBoxContainer/VBoxContainer4"]
|
||||
layout_mode = 2
|
||||
size_flags_vertical = 6
|
||||
text = "2"
|
||||
|
||||
[node name="VBoxContainer5" type="VBoxContainer" parent="MarginContainer/HBoxContainer/VBoxContainer/HBoxContainer"]
|
||||
layout_mode = 2
|
||||
size_flags_horizontal = 3
|
||||
|
||||
[node name="Label" type="Label" parent="MarginContainer/HBoxContainer/VBoxContainer/HBoxContainer/VBoxContainer5"]
|
||||
layout_mode = 2
|
||||
size_flags_vertical = 6
|
||||
text = "实训数量"
|
||||
|
||||
[node name="Label2" type="Label" parent="MarginContainer/HBoxContainer/VBoxContainer/HBoxContainer/VBoxContainer5"]
|
||||
layout_mode = 2
|
||||
size_flags_vertical = 6
|
||||
text = "2"
|
||||
|
||||
[node name="VBoxContainer6" type="VBoxContainer" parent="MarginContainer/HBoxContainer/VBoxContainer/HBoxContainer"]
|
||||
layout_mode = 2
|
||||
size_flags_horizontal = 3
|
||||
|
||||
[node name="Label" type="Label" parent="MarginContainer/HBoxContainer/VBoxContainer/HBoxContainer/VBoxContainer6"]
|
||||
layout_mode = 2
|
||||
size_flags_vertical = 6
|
||||
text = "课程时长"
|
||||
|
||||
[node name="Label2" type="Label" parent="MarginContainer/HBoxContainer/VBoxContainer/HBoxContainer/VBoxContainer6"]
|
||||
layout_mode = 2
|
||||
size_flags_vertical = 6
|
||||
text = "42"
|
||||
|
||||
[node name="VBoxContainer7" type="VBoxContainer" parent="MarginContainer/HBoxContainer/VBoxContainer/HBoxContainer"]
|
||||
layout_mode = 2
|
||||
size_flags_horizontal = 3
|
||||
|
||||
[node name="Label" type="Label" parent="MarginContainer/HBoxContainer/VBoxContainer/HBoxContainer/VBoxContainer7"]
|
||||
layout_mode = 2
|
||||
size_flags_vertical = 6
|
||||
text = "写作类型"
|
||||
|
||||
[node name="Label2" type="Label" parent="MarginContainer/HBoxContainer/VBoxContainer/HBoxContainer/VBoxContainer7"]
|
||||
layout_mode = 2
|
||||
size_flags_vertical = 6
|
||||
text = "单人"
|
||||
|
||||
[node name="TextureRect" type="TextureRect" parent="MarginContainer/HBoxContainer"]
|
||||
custom_minimum_size = Vector2(200, 0)
|
||||
layout_mode = 2
|
||||
texture = ExtResource("3_bknr3")
|
||||
expand_mode = 1
|
||||
stretch_mode = 6
|
||||
|
||||
[node name="MarginContainer" type="MarginContainer" parent="MarginContainer/HBoxContainer"]
|
||||
layout_mode = 2
|
||||
theme_override_constants/margin_left = 8
|
||||
theme_override_constants/margin_top = 8
|
||||
theme_override_constants/margin_right = 8
|
||||
theme_override_constants/margin_bottom = 8
|
||||
|
||||
[node name="VBoxContainer2" type="VBoxContainer" parent="MarginContainer/HBoxContainer/MarginContainer"]
|
||||
custom_minimum_size = Vector2(128, 0)
|
||||
layout_mode = 2
|
||||
|
||||
[node name="Button" type="Button" parent="MarginContainer/HBoxContainer/MarginContainer/VBoxContainer2"]
|
||||
custom_minimum_size = Vector2(0, 48)
|
||||
layout_mode = 2
|
||||
text = "开始"
|
||||
|
||||
[node name="Label" type="Label" parent="MarginContainer/HBoxContainer/MarginContainer/VBoxContainer2"]
|
||||
layout_mode = 2
|
||||
size_flags_vertical = 6
|
||||
text = "最后更新时间"
|
||||
|
||||
[node name="Label2" type="Label" parent="MarginContainer/HBoxContainer/MarginContainer/VBoxContainer2"]
|
||||
layout_mode = 2
|
||||
size_flags_vertical = 6
|
||||
text = "2023年6月28日14:04:42"
|
40
Mods/教育平台/教程header.tscn
Normal file
40
Mods/教育平台/教程header.tscn
Normal file
@@ -0,0 +1,40 @@
|
||||
[gd_scene load_steps=3 format=3 uid="uid://d1po2qljd0jh2"]
|
||||
|
||||
[ext_resource type="Texture2D" uid="uid://c38luts5hc5fj" path="res://Artists/Art/Icons/Arrows/icon_chevron-left-rounded.png" id="1_mns52"]
|
||||
[ext_resource type="Script" path="res://BITKit/Scripts/UX/UXServiceProxy.cs" id="2_qbyqo"]
|
||||
|
||||
[node name="教程Header" type="ColorRect"]
|
||||
custom_minimum_size = Vector2(0, 100)
|
||||
color = Color(0.117647, 0.117647, 0.117647, 1)
|
||||
|
||||
[node name="Label" type="Label" parent="."]
|
||||
layout_mode = 1
|
||||
anchors_preset = 8
|
||||
anchor_left = 0.5
|
||||
anchor_top = 0.5
|
||||
anchor_right = 0.5
|
||||
anchor_bottom = 0.5
|
||||
offset_left = -20.0
|
||||
offset_top = -11.5
|
||||
offset_right = 20.0
|
||||
offset_bottom = 11.5
|
||||
grow_horizontal = 2
|
||||
grow_vertical = 2
|
||||
theme_override_font_sizes/font_size = 48
|
||||
text = "工业互联网标识解析与注册"
|
||||
|
||||
[node name="Button" type="Button" parent="."]
|
||||
layout_mode = 1
|
||||
anchors_preset = 4
|
||||
anchor_top = 0.5
|
||||
anchor_bottom = 0.5
|
||||
offset_left = 43.0
|
||||
offset_top = -33.0
|
||||
offset_right = 143.0
|
||||
offset_bottom = 33.0
|
||||
grow_vertical = 2
|
||||
text = "返回"
|
||||
icon = ExtResource("1_mns52")
|
||||
script = ExtResource("2_qbyqo")
|
||||
|
||||
[connection signal="pressed" from="Button" to="Button" method="Return"]
|
209
Mods/教育平台/教育平台主菜单.tscn
Normal file
209
Mods/教育平台/教育平台主菜单.tscn
Normal file
@@ -0,0 +1,209 @@
|
||||
[gd_scene load_steps=11 format=3 uid="uid://bu5w3n4me3xj2"]
|
||||
|
||||
[ext_resource type="Texture2D" uid="uid://6dpw3hl2gu10" path="res://Mods/工业数据采集与分析应用分享/Arts/Illustrations/Illustration_ABB_Rotbotic_Arm_Rendering_DWADWFF.jpg" id="1_uwo3j"]
|
||||
[ext_resource type="PackedScene" uid="uid://dwdlewpjrt8pf" path="res://Mods/教育平台/Templates/选择课程.tscn" id="2_rvvu8"]
|
||||
[ext_resource type="Script" path="res://BITKit/Scripts/UX/UXPanel.cs" id="2_vgo47"]
|
||||
[ext_resource type="Texture2D" uid="uid://be1o87ilc237s" path="res://Artists/Art/Logos/logo-intelli.png" id="3_wkkwb"]
|
||||
[ext_resource type="PackedScene" uid="uid://cwq2llh4vrnsg" path="res://Mods/工业数据采集与分析应用分享/温湿度数据采集.tscn" id="5_2s7gj"]
|
||||
[ext_resource type="Texture2D" uid="uid://dbbq18cuoubm3" path="res://Mods/工业数据采集与分析应用分享/Arts/Images/实战-温湿度数据采集.jpg" id="5_5ul10"]
|
||||
[ext_resource type="PackedScene" uid="uid://cdivd7qml4dvu" path="res://Mods/工业数据采集与分析应用分享/工业互联网标识解析与注册.tscn" id="5_r62a1"]
|
||||
[ext_resource type="Texture2D" uid="uid://bji0qcq8fkimh" path="res://Mods/工业数据采集与分析应用分享/Arts/Images/实战-模拟量数字量采集.jpg" id="6_6n5xr"]
|
||||
[ext_resource type="Texture2D" uid="uid://2ka8taavxcn0" path="res://Mods/工业数据采集与分析应用分享/Arts/Images/实战-激光雷达数据采集.jpg" id="7_c28nt"]
|
||||
[ext_resource type="PackedScene" uid="uid://cgocposhaflgj" path="res://Mods/工业数据采集与分析应用分享/激光雷达数据采集.tscn" id="8_uj17p"]
|
||||
|
||||
[node name="教育平台主菜单" type="Node"]
|
||||
|
||||
[node name="TextureRect" type="TextureRect" parent="."]
|
||||
modulate = Color(0.188235, 0.188235, 0.188235, 0.788235)
|
||||
anchors_preset = 15
|
||||
anchor_right = 1.0
|
||||
anchor_bottom = 1.0
|
||||
grow_horizontal = 2
|
||||
grow_vertical = 2
|
||||
texture = ExtResource("1_uwo3j")
|
||||
expand_mode = 1
|
||||
stretch_mode = 4
|
||||
|
||||
[node name="UXPanel" type="VBoxContainer" parent="."]
|
||||
anchors_preset = 15
|
||||
anchor_right = 1.0
|
||||
anchor_bottom = 1.0
|
||||
grow_horizontal = 2
|
||||
grow_vertical = 2
|
||||
script = ExtResource("2_vgo47")
|
||||
allowCursor = true
|
||||
allowInput = true
|
||||
isStartPanel = true
|
||||
|
||||
[node name="ColorRect" type="ColorRect" parent="UXPanel"]
|
||||
custom_minimum_size = Vector2(0, 100)
|
||||
layout_mode = 2
|
||||
|
||||
[node name="HBoxContainer" type="HBoxContainer" parent="UXPanel/ColorRect"]
|
||||
layout_mode = 1
|
||||
anchors_preset = 15
|
||||
anchor_right = 1.0
|
||||
anchor_bottom = 1.0
|
||||
grow_horizontal = 2
|
||||
grow_vertical = 2
|
||||
alignment = 1
|
||||
|
||||
[node name="TabBar" type="TabBar" parent="UXPanel/ColorRect/HBoxContainer"]
|
||||
layout_mode = 2
|
||||
size_flags_horizontal = 3
|
||||
tab_alignment = 1
|
||||
tab_count = 3
|
||||
tab_0/title = "教程与实训"
|
||||
tab_1/title = "知识点"
|
||||
tab_2/title = "设置"
|
||||
|
||||
[node name="TextureRect" type="TextureRect" parent="UXPanel/ColorRect"]
|
||||
layout_mode = 0
|
||||
offset_left = 32.0
|
||||
offset_right = 211.0
|
||||
offset_bottom = 100.0
|
||||
texture = ExtResource("3_wkkwb")
|
||||
expand_mode = 1
|
||||
|
||||
[node name="VBoxContainer" type="VBoxContainer" parent="UXPanel/ColorRect"]
|
||||
layout_mode = 0
|
||||
offset_left = 228.0
|
||||
offset_right = 692.0
|
||||
offset_bottom = 100.0
|
||||
theme_override_constants/separation = 0
|
||||
alignment = 1
|
||||
metadata/_edit_group_ = true
|
||||
|
||||
[node name="Label" type="Label" parent="UXPanel/ColorRect/VBoxContainer"]
|
||||
layout_mode = 2
|
||||
size_flags_vertical = 1
|
||||
theme_type_variation = &"HeaderMedium"
|
||||
theme_override_colors/font_color = Color(0, 0, 0, 1)
|
||||
text = "虚拟仿真实训课程体系"
|
||||
vertical_alignment = 1
|
||||
|
||||
[node name="Label2" type="Label" parent="UXPanel/ColorRect/VBoxContainer"]
|
||||
layout_mode = 2
|
||||
theme_type_variation = &"HeaderMedium"
|
||||
theme_override_colors/font_color = Color(0, 0, 0, 1)
|
||||
text = "Virtual Simulation Training Course System"
|
||||
|
||||
[node name="ReferenceRect" type="MarginContainer" parent="UXPanel"]
|
||||
layout_mode = 2
|
||||
size_flags_vertical = 3
|
||||
theme_override_constants/margin_left = 32
|
||||
theme_override_constants/margin_top = 32
|
||||
theme_override_constants/margin_right = 32
|
||||
theme_override_constants/margin_bottom = 32
|
||||
|
||||
[node name="HBoxContainer" type="HBoxContainer" parent="UXPanel/ReferenceRect"]
|
||||
layout_mode = 2
|
||||
theme_override_constants/separation = 32
|
||||
|
||||
[node name="HBoxContainer" type="VBoxContainer" parent="UXPanel/ReferenceRect/HBoxContainer"]
|
||||
custom_minimum_size = Vector2(384, 0)
|
||||
layout_mode = 2
|
||||
|
||||
[node name="HBoxContainer" type="HBoxContainer" parent="UXPanel/ReferenceRect/HBoxContainer/HBoxContainer"]
|
||||
layout_mode = 2
|
||||
|
||||
[node name="Label" type="Label" parent="UXPanel/ReferenceRect/HBoxContainer/HBoxContainer/HBoxContainer"]
|
||||
layout_mode = 2
|
||||
theme_type_variation = &"HeaderLarge"
|
||||
text = "试用版"
|
||||
|
||||
[node name="Label2" type="Label" parent="UXPanel/ReferenceRect/HBoxContainer/HBoxContainer/HBoxContainer"]
|
||||
layout_mode = 2
|
||||
theme_type_variation = &"HeaderSmall"
|
||||
text = "仅包括2个课程"
|
||||
|
||||
[node name="HSeparator" type="HSeparator" parent="UXPanel/ReferenceRect/HBoxContainer/HBoxContainer"]
|
||||
layout_mode = 2
|
||||
theme_override_constants/separation = 32
|
||||
|
||||
[node name="Label3" type="Label" parent="UXPanel/ReferenceRect/HBoxContainer/HBoxContainer"]
|
||||
layout_mode = 2
|
||||
theme_type_variation = &"HeaderLarge"
|
||||
text = "教程与实训"
|
||||
|
||||
[node name="Label4" type="Label" parent="UXPanel/ReferenceRect/HBoxContainer/HBoxContainer"]
|
||||
layout_mode = 2
|
||||
theme_type_variation = &"HeaderSmall"
|
||||
theme_override_colors/font_color = Color(0, 0.698039, 0.886275, 1)
|
||||
text = "导入链接(试用版未启用)"
|
||||
|
||||
[node name="HSeparator2" type="HSeparator" parent="UXPanel/ReferenceRect/HBoxContainer/HBoxContainer"]
|
||||
layout_mode = 2
|
||||
theme_override_constants/separation = 32
|
||||
|
||||
[node name="RichTextLabel" type="RichTextLabel" parent="UXPanel/ReferenceRect/HBoxContainer/HBoxContainer"]
|
||||
layout_mode = 2
|
||||
text = "最后更新时间:
|
||||
2023年6月28日13:46:24
|
||||
|
||||
中安颖立智能科技有限公司
|
||||
|
||||
地址:"
|
||||
fit_content = true
|
||||
|
||||
[node name="ScrollContainer" type="ScrollContainer" parent="UXPanel/ReferenceRect/HBoxContainer"]
|
||||
layout_mode = 2
|
||||
size_flags_horizontal = 3
|
||||
|
||||
[node name="VBoxContainer" type="VBoxContainer" parent="UXPanel/ReferenceRect/HBoxContainer/ScrollContainer"]
|
||||
layout_mode = 2
|
||||
size_flags_horizontal = 3
|
||||
theme_override_constants/separation = 16
|
||||
|
||||
[node name="Label" type="Label" parent="UXPanel/ReferenceRect/HBoxContainer/ScrollContainer/VBoxContainer"]
|
||||
layout_mode = 2
|
||||
theme_type_variation = &"HeaderLarge"
|
||||
text = "数据采集实训"
|
||||
|
||||
[node name="NinePatchRect" parent="UXPanel/ReferenceRect/HBoxContainer/ScrollContainer/VBoxContainer" instance=ExtResource("2_rvvu8")]
|
||||
layout_mode = 2
|
||||
CourseScene = ExtResource("5_2s7gj")
|
||||
|
||||
[node name="Label" parent="UXPanel/ReferenceRect/HBoxContainer/ScrollContainer/VBoxContainer/NinePatchRect/MarginContainer/HBoxContainer/VBoxContainer" index="0"]
|
||||
text = "实战-温湿度数据采集"
|
||||
|
||||
[node name="TextureRect" parent="UXPanel/ReferenceRect/HBoxContainer/ScrollContainer/VBoxContainer/NinePatchRect/MarginContainer/HBoxContainer" index="1"]
|
||||
texture = ExtResource("5_5ul10")
|
||||
expand_mode = 2
|
||||
|
||||
[node name="NinePatchRect2" parent="UXPanel/ReferenceRect/HBoxContainer/ScrollContainer/VBoxContainer" instance=ExtResource("2_rvvu8")]
|
||||
layout_mode = 2
|
||||
|
||||
[node name="Label" parent="UXPanel/ReferenceRect/HBoxContainer/ScrollContainer/VBoxContainer/NinePatchRect2/MarginContainer/HBoxContainer/VBoxContainer" index="0"]
|
||||
text = "实战-模拟量数字量采集"
|
||||
|
||||
[node name="TextureRect" parent="UXPanel/ReferenceRect/HBoxContainer/ScrollContainer/VBoxContainer/NinePatchRect2/MarginContainer/HBoxContainer" index="1"]
|
||||
texture = ExtResource("6_6n5xr")
|
||||
|
||||
[node name="NinePatchRect3" parent="UXPanel/ReferenceRect/HBoxContainer/ScrollContainer/VBoxContainer" instance=ExtResource("2_rvvu8")]
|
||||
layout_mode = 2
|
||||
CourseScene = ExtResource("8_uj17p")
|
||||
|
||||
[node name="Label" parent="UXPanel/ReferenceRect/HBoxContainer/ScrollContainer/VBoxContainer/NinePatchRect3/MarginContainer/HBoxContainer/VBoxContainer" index="0"]
|
||||
text = "实战-激光雷达数据采集"
|
||||
|
||||
[node name="TextureRect" parent="UXPanel/ReferenceRect/HBoxContainer/ScrollContainer/VBoxContainer/NinePatchRect3/MarginContainer/HBoxContainer" index="1"]
|
||||
texture = ExtResource("7_c28nt")
|
||||
|
||||
[node name="Label2" type="Label" parent="UXPanel/ReferenceRect/HBoxContainer/ScrollContainer/VBoxContainer"]
|
||||
layout_mode = 2
|
||||
theme_type_variation = &"HeaderLarge"
|
||||
text = "工业互联网标识解析与注册"
|
||||
|
||||
[node name="NinePatchRect4" parent="UXPanel/ReferenceRect/HBoxContainer/ScrollContainer/VBoxContainer" instance=ExtResource("2_rvvu8")]
|
||||
layout_mode = 2
|
||||
CourseScene = ExtResource("5_r62a1")
|
||||
CourseName = "标注解析与注册"
|
||||
|
||||
[node name="Label" parent="UXPanel/ReferenceRect/HBoxContainer/ScrollContainer/VBoxContainer/NinePatchRect4/MarginContainer/HBoxContainer/VBoxContainer" index="0"]
|
||||
text = "工业互联网标识解析"
|
||||
|
||||
[editable path="UXPanel/ReferenceRect/HBoxContainer/ScrollContainer/VBoxContainer/NinePatchRect"]
|
||||
[editable path="UXPanel/ReferenceRect/HBoxContainer/ScrollContainer/VBoxContainer/NinePatchRect2"]
|
||||
[editable path="UXPanel/ReferenceRect/HBoxContainer/ScrollContainer/VBoxContainer/NinePatchRect3"]
|
||||
[editable path="UXPanel/ReferenceRect/HBoxContainer/ScrollContainer/VBoxContainer/NinePatchRect4"]
|
Reference in New Issue
Block a user