Rename Solution
This commit is contained in:
13
.idea/.idea.VirtualChemDemo/.idea/.gitignore
generated
vendored
13
.idea/.idea.VirtualChemDemo/.idea/.gitignore
generated
vendored
@@ -1,13 +0,0 @@
|
|||||||
# Default ignored files
|
|
||||||
/shelf/
|
|
||||||
/workspace.xml
|
|
||||||
# Rider ignored files
|
|
||||||
/projectSettingsUpdater.xml
|
|
||||||
/modules.xml
|
|
||||||
/contentModel.xml
|
|
||||||
/.idea.VirtualChemDemo.iml
|
|
||||||
# Editor-based HTTP Client requests
|
|
||||||
/httpRequests/
|
|
||||||
# Datasource local storage ignored files
|
|
||||||
/dataSources/
|
|
||||||
/dataSources.local.xml
|
|
||||||
4
.idea/.idea.VirtualChemDemo/.idea/encodings.xml
generated
4
.idea/.idea.VirtualChemDemo/.idea/encodings.xml
generated
@@ -1,4 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project version="4">
|
|
||||||
<component name="Encoding" addBOMForNewFiles="with BOM under Windows, with no BOM otherwise" />
|
|
||||||
</project>
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project version="4">
|
|
||||||
<component name="UserContentModel">
|
|
||||||
<attachedFolders />
|
|
||||||
<explicitIncludes />
|
|
||||||
<explicitExcludes />
|
|
||||||
</component>
|
|
||||||
</project>
|
|
||||||
10
.idea/.idea.VirtualChemDemo/.idea/vcs.xml
generated
10
.idea/.idea.VirtualChemDemo/.idea/vcs.xml
generated
@@ -1,10 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project version="4">
|
|
||||||
<component name="VcsDirectoryMappings">
|
|
||||||
<mapping directory="$PROJECT_DIR$/../Skeleton" vcs="Git" />
|
|
||||||
<mapping directory="$PROJECT_DIR$/../SkeletonTest" vcs="Git" />
|
|
||||||
<mapping directory="$PROJECT_DIR$" vcs="Git" />
|
|
||||||
<mapping directory="$PROJECT_DIR$/../VirtualChemistry" vcs="Git" />
|
|
||||||
<mapping directory="$PROJECT_DIR$/../VirtualChemistryTest" vcs="Git" />
|
|
||||||
</component>
|
|
||||||
</project>
|
|
||||||
@@ -1,10 +1,10 @@
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using Godot;
|
using Godot;
|
||||||
using VirtualChemDemo.Scenes;
|
using VirtualChemistry.Demo.Scenes;
|
||||||
using VirtualChemistry.Chemistry.Bonds.Implements;
|
using VirtualChemistry.Chemistry.Bonds.Implements;
|
||||||
|
|
||||||
namespace VirtualChemDemo.Concepts;
|
namespace VirtualChemistry.Demo.Concepts;
|
||||||
|
|
||||||
public abstract partial class Bond2D : Line2D
|
public abstract partial class Bond2D : Line2D
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ using System;
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using Godot;
|
using Godot;
|
||||||
using VirtualChemDemo.Concepts;
|
using VirtualChemistry.Demo.Concepts;
|
||||||
using VirtualChemistry.Chemistry.Atoms.Implements;
|
using VirtualChemistry.Chemistry.Atoms.Implements;
|
||||||
using VirtualChemistry.Chemistry.Atoms.Resolver;
|
using VirtualChemistry.Chemistry.Atoms.Resolver;
|
||||||
using VirtualChemistry.Chemistry.Bonds.Implements;
|
using VirtualChemistry.Chemistry.Bonds.Implements;
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
using VirtualChemDemo.Concepts;
|
using VirtualChemistry.Demo.Concepts;
|
||||||
|
|
||||||
public partial class MultiBond : Bond2D
|
public partial class MultiBond : Bond2D
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using Godot;
|
using Godot;
|
||||||
using VirtualChemDemo.Concepts;
|
using VirtualChemistry.Demo.Concepts;
|
||||||
|
|
||||||
namespace VirtualChemDemo.Scenes;
|
namespace VirtualChemistry.Demo.Scenes;
|
||||||
|
|
||||||
public partial class SelfBond : Bond2D
|
public partial class SelfBond : Bond2D
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
using System;
|
using System;
|
||||||
using Godot;
|
using Godot;
|
||||||
using VirtualChemDemo.Concepts;
|
using VirtualChemistry.Demo.Concepts;
|
||||||
|
|
||||||
public partial class SingleBond : Bond2D
|
public partial class SingleBond : Bond2D
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -3,6 +3,7 @@
|
|||||||
[ext_resource type="Script" path="res://Scenes/StringLoader.cs" id="1_qoxxp"]
|
[ext_resource type="Script" path="res://Scenes/StringLoader.cs" id="1_qoxxp"]
|
||||||
|
|
||||||
[node name="StringLoader" type="Window"]
|
[node name="StringLoader" type="Window"]
|
||||||
|
position = Vector2i(0, 36)
|
||||||
size = Vector2i(500, 250)
|
size = Vector2i(500, 250)
|
||||||
script = ExtResource("1_qoxxp")
|
script = ExtResource("1_qoxxp")
|
||||||
|
|
||||||
|
|||||||
@@ -4,6 +4,7 @@
|
|||||||
<TargetFramework Condition=" '$(GodotTargetPlatform)' == 'android' ">net7.0</TargetFramework>
|
<TargetFramework Condition=" '$(GodotTargetPlatform)' == 'android' ">net7.0</TargetFramework>
|
||||||
<TargetFramework Condition=" '$(GodotTargetPlatform)' == 'ios' ">net8.0</TargetFramework>
|
<TargetFramework Condition=" '$(GodotTargetPlatform)' == 'ios' ">net8.0</TargetFramework>
|
||||||
<EnableDynamicLoading>true</EnableDynamicLoading>
|
<EnableDynamicLoading>true</EnableDynamicLoading>
|
||||||
|
<RootNamespace>VirtualChemistry.Demo</RootNamespace>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="..\Skeleton\Skeleton.csproj" />
|
<ProjectReference Include="..\Skeleton\Skeleton.csproj" />
|
||||||
@@ -1,14 +1,14 @@
|
|||||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||||
# Visual Studio 2012
|
# Visual Studio 2012
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "VirtualChemDemo", "VirtualChemDemo.csproj", "{477897FC-42F3-4DA7-A051-6015F15BAEAF}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "VirtualChemistry.Demo", "VirtualChemistry.Demo.csproj", "{477897FC-42F3-4DA7-A051-6015F15BAEAF}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "VirtualChemistry", "..\VirtualChemistry\VirtualChemistry.csproj", "{FB57BA80-96CF-4CAF-B7DE-807650B81BE3}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "VirtualChemistry", "..\VirtualChemistry\VirtualChemistry.csproj", "{FB57BA80-96CF-4CAF-B7DE-807650B81BE3}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Skeleton", "..\Skeleton\Skeleton.csproj", "{0D01BE23-8243-47C2-B2D0-08F617137C03}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Skeleton", "..\Skeleton\Skeleton.csproj", "{0D01BE23-8243-47C2-B2D0-08F617137C03}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SkeletonTest", "..\SkeletonTest\SkeletonTest.csproj", "{ABE3FB26-3DFA-4336-9357-B7278D253D69}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Skeleton.Test", "..\Skeleton.Test\Skeleton.Test.csproj", "{ABE3FB26-3DFA-4336-9357-B7278D253D69}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "VirtualChemistryTest", "..\VirtualChemistryTest\VirtualChemistryTest.csproj", "{6164DB75-BC19-41DC-BC69-8A813EEE0179}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "VirtualChemistry.Test", "..\VirtualChemistry.Test\VirtualChemistry.Test.csproj", "{6164DB75-BC19-41DC-BC69-8A813EEE0179}"
|
||||||
EndProject
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
@@ -10,11 +10,11 @@ config_version=5
|
|||||||
|
|
||||||
[application]
|
[application]
|
||||||
|
|
||||||
config/name="VirtualChemDemo"
|
config/name="VirtualChemistry.Demo"
|
||||||
run/main_scene="res://Scenes/MainScene.tscn"
|
run/main_scene="res://Scenes/MainScene.tscn"
|
||||||
config/features=PackedStringArray("4.3", "C#", "Forward Plus")
|
config/features=PackedStringArray("4.3", "C#", "Forward Plus")
|
||||||
config/icon="res://icon.svg"
|
config/icon="res://icon.svg"
|
||||||
|
|
||||||
[dotnet]
|
[dotnet]
|
||||||
|
|
||||||
project/assembly_name="VirtualChemDemo"
|
project/assembly_name="VirtualChemistry.Demo"
|
||||||
|
|||||||
Reference in New Issue
Block a user