add mono c# (using dotnet9.0 from https://github.com/dotnet/runtime), add ECS (entt), add some c# code, add fastNoise
This commit is contained in:
6
.gitignore
vendored
6
.gitignore
vendored
@ -16,4 +16,8 @@ cmake-build-*/
|
||||
build/
|
||||
|
||||
# Files
|
||||
*.user
|
||||
*.user
|
||||
|
||||
# dotnet project
|
||||
[Bb]in/
|
||||
[Oo]bj/
|
||||
3
.gitmodules
vendored
3
.gitmodules
vendored
@ -17,3 +17,6 @@
|
||||
[submodule "Prism/vendor/ImGuizmo"]
|
||||
path = Prism/vendor/ImGuizmo
|
||||
url = https://github.com/CedricGuillemet/ImGuizmo.git
|
||||
[submodule "Prism/vendor/EnTT"]
|
||||
path = Prism/vendor/EnTT
|
||||
url = https://github.com/skypjack/entt.git
|
||||
|
||||
@ -1,7 +1,12 @@
|
||||
project(PrismEditor)
|
||||
|
||||
set(CMAKE_BINARY_DIR ${CMAKE_BINARY_DIR}/bin)
|
||||
|
||||
file(GLOB ASSETS assets)
|
||||
file(COPY ${ASSETS} DESTINATION ${CMAKE_BINARY_DIR}/bin)
|
||||
file(COPY ${ASSETS} DESTINATION ${CMAKE_BINARY_DIR})
|
||||
|
||||
file(GLOB DOTNET_LIBRARY library)
|
||||
file(COPY ${DOTNET_LIBRARY} DESTINATION ${CMAKE_BINARY_DIR})
|
||||
|
||||
file(GLOB_RECURSE SRC_SOURCE ./**.cpp)
|
||||
|
||||
|
||||
@ -129,31 +129,43 @@ namespace Prism
|
||||
|
||||
void EditorLayer::OnAttach()
|
||||
{
|
||||
auto environment = Environment::Load("assets/env/birchwood_4k.hdr");
|
||||
const auto environment = Environment::Load("assets/env/birchwood_4k.hdr");
|
||||
|
||||
// Model Scene
|
||||
{
|
||||
m_Scene = Ref<Scene>::Create("Model Scene");
|
||||
m_Scene->SetCamera(Camera(glm::perspectiveFov(glm::radians(45.0f), 1280.0f, 720.0f, 0.1f, 10000.0f)));
|
||||
m_CameraEntity = m_Scene->CreateEntity("Camera Entity");
|
||||
m_CameraEntity.AddComponent<CameraComponent>(Camera(glm::perspectiveFov(glm::radians(45.0f), 1280.0f, 720.0f, 0.1f, 10000.0f)));
|
||||
|
||||
m_Scene->SetEnvironment(environment);
|
||||
|
||||
m_MeshEntity = m_Scene->CreateEntity("test Entity");
|
||||
auto mesh = Ref<Mesh>::Create("assets/meshes/TestScene.fbx");
|
||||
m_MeshEntity->SetMesh(mesh);
|
||||
// auto mesh = Ref<Mesh>::Create("assets/models/Apollo AE/Apollo AE.fbx");
|
||||
// auto mesh = Ref<Mesh>::Create("assets/models/tafi/塔菲.pmx");
|
||||
m_MeshEntity.AddComponent<MeshComponent>(mesh);
|
||||
|
||||
m_MeshMaterial = mesh->GetMaterial();
|
||||
|
||||
m_MeshEntity.AddComponent<ScriptComponent>("Example.Script");
|
||||
|
||||
// Test Sandbox
|
||||
auto mapGenerator = m_Scene->CreateEntity("Map Generator");
|
||||
mapGenerator.AddComponent<ScriptComponent>("Example.MapGenerator");
|
||||
|
||||
/*
|
||||
auto secondEntity = m_Scene->CreateEntity("Gun Entity");
|
||||
secondEntity->Transform() = glm::translate(glm::mat4(1.0f), { 5, 5, 5 }) * glm::scale(glm::mat4(1.0f), {10, 10, 10});
|
||||
mesh = Ref<Mesh>::Create("assets/models/m1911/M1911Materials.fbx");
|
||||
secondEntity->SetMesh(mesh);
|
||||
*/
|
||||
}
|
||||
|
||||
// Sphere Scene
|
||||
{
|
||||
m_SphereScene = Ref<Scene>::Create("PBR Sphere Scene");
|
||||
m_SphereScene->SetCamera(Camera(glm::perspectiveFov(glm::radians(45.0f), 1280.0f, 720.0f, 0.1f, 10000.0f)));
|
||||
auto cameraEntity = m_SphereScene->CreateEntity("camera");
|
||||
cameraEntity.AddComponent<CameraComponent>(Camera(glm::perspectiveFov(glm::radians(45.0f), 1280.0f, 720.0f, 0.1f, 10000.0f)));
|
||||
|
||||
m_SphereScene->SetEnvironment(environment);
|
||||
|
||||
@ -173,9 +185,11 @@ namespace Prism
|
||||
roughness += 0.15f;
|
||||
m_MetalSphereMaterialInstances.push_back(mi);
|
||||
|
||||
/*
|
||||
sphereEntity->SetMesh(sphereMesh);
|
||||
sphereEntity->SetMaterial(mi);
|
||||
sphereEntity->Transform() = glm::translate(glm::mat4(1.0f), glm::vec3(x, 0.0f, 0.0f));
|
||||
*/
|
||||
}
|
||||
|
||||
x = -4.0f;
|
||||
@ -191,16 +205,17 @@ namespace Prism
|
||||
roughness += 0.15f;
|
||||
m_DielectricSphereMaterialInstances.push_back(mi);
|
||||
|
||||
/*
|
||||
sphereEntity->SetMesh(sphereMesh);
|
||||
sphereEntity->SetMaterial(mi);
|
||||
sphereEntity->Transform() = glm::translate(glm::mat4(1.0f), glm::vec3(x, 1.2f, 0.0f));
|
||||
*/
|
||||
}
|
||||
}
|
||||
|
||||
m_ActiveScene = m_Scene;
|
||||
m_SceneHierarchyPanel = CreateScope<SceneHierarchyPanel>(m_ActiveScene);
|
||||
|
||||
m_PlaneMesh = Ref<Mesh>::Create("assets/models/Plane1m.obj");
|
||||
|
||||
// Editor
|
||||
m_CheckerboardTex = Texture2D::Create("assets/editor/Checkerboard.tga");
|
||||
@ -210,7 +225,7 @@ namespace Prism
|
||||
light.Direction = { -0.5f, -0.5f, 1.0f };
|
||||
light.Radiance = { 1.0f, 1.0f, 1.0f };
|
||||
|
||||
m_CurrentlySelectedTransform = &m_MeshEntity->Transform();
|
||||
m_CurrentlySelectedTransform = &m_MeshEntity.Transform();
|
||||
}
|
||||
|
||||
void EditorLayer::OnDetach()
|
||||
@ -254,29 +269,35 @@ namespace Prism
|
||||
if (m_RoughnessInput.TextureMap)
|
||||
m_MeshMaterial->Set("u_RoughnessTexture", m_RoughnessInput.TextureMap);
|
||||
|
||||
/*
|
||||
if (m_AllowViewportCameraEvents)
|
||||
m_Scene->GetCamera().OnUpdate(deltaTime);
|
||||
*/
|
||||
|
||||
m_ActiveScene->OnUpdate(deltaTime);
|
||||
|
||||
if (m_DrawOnTopBoundingBoxes)
|
||||
{
|
||||
Renderer::BeginRenderPass(SceneRenderer::GetFinalRenderPass(), false);
|
||||
auto viewProj = m_Scene->GetCamera().GetViewProjection();
|
||||
auto viewProj = m_CameraEntity.GetComponent<CameraComponent>().Camera.GetViewProjection();
|
||||
Renderer2D::BeginScene(viewProj, false);
|
||||
Renderer::DrawAABB(m_MeshEntity->GetMesh(), m_MeshEntity->Transform());
|
||||
Renderer::DrawAABB(m_MeshEntity.GetComponent<MeshComponent>(), m_MeshEntity.GetComponent<TransformComponent>());
|
||||
|
||||
Renderer2D::EndScene();
|
||||
Renderer::EndRenderPass();
|
||||
}
|
||||
|
||||
if (!m_SelectedSubmeshes.empty())
|
||||
if (!m_SelectionContext.empty())
|
||||
{
|
||||
auto& selection = m_SelectionContext[0];
|
||||
|
||||
Renderer::BeginRenderPass(SceneRenderer::GetFinalRenderPass(), false);
|
||||
const auto viewProj = m_Scene->GetCamera().GetViewProjection();
|
||||
const auto viewProj = m_CameraEntity.GetComponent<CameraComponent>().Camera.GetViewProjection();
|
||||
Renderer2D::BeginScene(viewProj, false);
|
||||
const auto& submesh = m_SelectedSubmeshes[0];
|
||||
Renderer::DrawAABB(submesh.Mesh->BoundingBox, m_MeshEntity->GetTransform() * submesh.Mesh->Transform);
|
||||
|
||||
const glm::vec4 color = (m_SelectionMode == SelectionMode::Entity) ? glm::vec4{ 1.0f, 1.0f, 1.0f, 1.0f } : glm::vec4{ 0.2f, 0.9f, 0.2f, 1.0f };
|
||||
Renderer::DrawAABB(selection.Mesh->BoundingBox, selection.Entity.GetComponent<TransformComponent>().Transform * selection.Mesh->Transform, color);
|
||||
|
||||
Renderer2D::EndScene();
|
||||
Renderer::EndRenderPass();
|
||||
}
|
||||
@ -456,7 +477,7 @@ namespace Prism
|
||||
Property("Light Direction", light.Direction);
|
||||
Property("Light Radiance", light.Radiance, PropertyFlag::ColorProperty);
|
||||
Property("Light Multiplier", light.Multiplier, 0.0f, 5.0f);
|
||||
Property("Exposure", m_ActiveScene->GetCamera().GetExposure(), 0.0f, 5.0f);
|
||||
Property("Exposure", m_CameraEntity.GetComponent<CameraComponent>().Camera.GetExposure(), 0.0f, 5.0f);
|
||||
|
||||
Property("Radiance Prefiltering", m_RadiancePrefilter);
|
||||
Property("Env Map Rotation", m_EnvMapRotation, -360.0f, 360.0f);
|
||||
@ -466,6 +487,12 @@ namespace Prism
|
||||
if (m_UIShowBoundingBoxes && Property("On Top", m_UIShowBoundingBoxesOnTop))
|
||||
ShowBoundingBoxes(m_UIShowBoundingBoxes, m_UIShowBoundingBoxesOnTop);
|
||||
|
||||
const char* label = m_SelectionMode == SelectionMode::Entity ? "Entity" : "Mesh";
|
||||
if (ImGui::Button(label))
|
||||
{
|
||||
m_SelectionMode = m_SelectionMode == SelectionMode::Entity ? SelectionMode::SubMesh : SelectionMode::Entity;
|
||||
}
|
||||
|
||||
ImGui::Columns(1);
|
||||
|
||||
ImGui::End();
|
||||
@ -473,8 +500,8 @@ namespace Prism
|
||||
ImGui::Separator();
|
||||
{
|
||||
ImGui::Text("Mesh");
|
||||
auto mesh = m_MeshEntity->GetMesh();
|
||||
std::string fullpath = mesh ? mesh->GetFilePath() : "None";
|
||||
auto meshComponent = m_MeshEntity.GetComponent<MeshComponent>();
|
||||
std::string fullpath = meshComponent.Mesh ? meshComponent.Mesh->GetFilePath() : "None";
|
||||
size_t found = fullpath.find_last_of("/\\");
|
||||
std::string path = found != std::string::npos ? fullpath.substr(found + 1) : fullpath;
|
||||
ImGui::Text(path.c_str());
|
||||
@ -487,7 +514,7 @@ namespace Prism
|
||||
auto newMesh = Ref<Mesh>::Create(filename);
|
||||
// m_MeshMaterial.reset(new MaterialInstance(newMesh->GetMaterial()));
|
||||
// m_MeshEntity->SetMaterial(m_MeshMaterial);
|
||||
m_MeshEntity->SetMesh(newMesh);
|
||||
meshComponent.Mesh = newMesh;
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -658,8 +685,8 @@ namespace Prism
|
||||
auto viewportOffset = ImGui::GetCursorPos(); // includes tab bar
|
||||
auto viewportSize = ImGui::GetContentRegionAvail();
|
||||
SceneRenderer::SetViewportSize((uint32_t)viewportSize.x, (uint32_t)viewportSize.y);
|
||||
m_ActiveScene->GetCamera().SetProjectionMatrix(glm::perspectiveFov(glm::radians(45.0f), viewportSize.x, viewportSize.y, 0.1f, 10000.0f));
|
||||
m_ActiveScene->GetCamera().SetViewportSize((uint32_t)viewportSize.x, (uint32_t)viewportSize.y);
|
||||
m_CameraEntity.GetComponent<CameraComponent>().Camera.SetProjectionMatrix(glm::perspectiveFov(glm::radians(45.0f), viewportSize.x, viewportSize.y, 0.1f, 10000.0f));
|
||||
m_CameraEntity.GetComponent<CameraComponent>().Camera.SetViewportSize((uint32_t)viewportSize.x, (uint32_t)viewportSize.y);
|
||||
ImGui::Image((ImTextureRef)SceneRenderer::GetFinalColorBufferRendererID(), viewportSize, { 0, 1 }, { 1, 0 });
|
||||
|
||||
|
||||
@ -677,21 +704,41 @@ namespace Prism
|
||||
// ImGuizmo
|
||||
if (m_GizmoType != -1 && m_CurrentlySelectedTransform)
|
||||
{
|
||||
auto& selection = m_SelectionContext[0];
|
||||
|
||||
const auto rw = (float)ImGui::GetWindowWidth();
|
||||
const auto rh = (float)ImGui::GetWindowHeight();
|
||||
ImGuizmo::SetOrthographic(false);
|
||||
ImGuizmo::SetDrawlist();
|
||||
ImGuizmo::SetRect(ImGui::GetWindowPos().x, ImGui::GetWindowPos().y, rw, rh);
|
||||
const auto& camera = m_ActiveScene->GetCamera();
|
||||
|
||||
bool snap = Input::IsKeyPressed(PM_KEY_LEFT_CONTROL);
|
||||
ImGuizmo::Manipulate(glm::value_ptr(camera.GetViewMatrix()),
|
||||
glm::value_ptr(camera.GetProjectionMatrix()),
|
||||
(ImGuizmo::OPERATION)m_GizmoType,
|
||||
ImGuizmo::LOCAL,
|
||||
glm::value_ptr(m_MeshEntity->Transform()),
|
||||
nullptr,
|
||||
snap ? &m_SnapValue : nullptr);
|
||||
const auto& camera = m_CameraEntity.GetComponent<CameraComponent>().Camera;
|
||||
bool snap = Input::IsKeyPressed(Key::LEFT_CONTROL);
|
||||
|
||||
auto& entityTransform = selection.Entity.Transform();
|
||||
float snapValue[3] = { m_SnapValue, m_SnapValue, m_SnapValue };
|
||||
if (m_SelectionMode == SelectionMode::Entity)
|
||||
{
|
||||
ImGuizmo::Manipulate(glm::value_ptr(camera.GetViewMatrix()),
|
||||
glm::value_ptr(camera.GetProjectionMatrix()),
|
||||
(ImGuizmo::OPERATION)m_GizmoType,
|
||||
ImGuizmo::LOCAL,
|
||||
glm::value_ptr(m_MeshEntity.GetComponent<TransformComponent>().Transform),
|
||||
nullptr,
|
||||
snap ? snapValue : nullptr);
|
||||
}else
|
||||
{
|
||||
glm::mat4 transformBase = entityTransform * selection.Mesh->Transform;
|
||||
ImGuizmo::Manipulate(glm::value_ptr(camera.GetViewMatrix()),
|
||||
glm::value_ptr(camera.GetProjectionMatrix()),
|
||||
(ImGuizmo::OPERATION)m_GizmoType,
|
||||
ImGuizmo::LOCAL,
|
||||
glm::value_ptr(transformBase),
|
||||
nullptr,
|
||||
snap ? snapValue : nullptr);
|
||||
|
||||
selection.Mesh->Transform = glm::inverse(entityTransform) * transformBase;
|
||||
}
|
||||
}
|
||||
|
||||
ImGui::End();
|
||||
@ -701,8 +748,10 @@ namespace Prism
|
||||
|
||||
void EditorLayer::OnEvent(Event& e)
|
||||
{
|
||||
/*
|
||||
if (m_AllowViewportCameraEvents)
|
||||
m_Scene->GetCamera().OnEvent(e);
|
||||
*/
|
||||
|
||||
EventDispatcher dispatcher(e);
|
||||
dispatcher.Dispatch<KeyPressedEvent>(PM_BIND_EVENT_FN(EditorLayer::OnKeyPressedEvent));
|
||||
@ -713,26 +762,26 @@ namespace Prism
|
||||
{
|
||||
switch (e.GetKeyCode())
|
||||
{
|
||||
case PM_KEY_Q:
|
||||
case KeyCode::Q:
|
||||
m_GizmoType = -1;
|
||||
break;
|
||||
case PM_KEY_W:
|
||||
case KeyCode::W:
|
||||
m_GizmoType = ImGuizmo::OPERATION::TRANSLATE;
|
||||
break;
|
||||
case PM_KEY_E:
|
||||
case KeyCode::E:
|
||||
m_GizmoType = ImGuizmo::OPERATION::ROTATE;
|
||||
break;
|
||||
case PM_KEY_R:
|
||||
case KeyCode::R:
|
||||
m_GizmoType = ImGuizmo::OPERATION::SCALE;
|
||||
break;
|
||||
case PM_KEY_G:
|
||||
case KeyCode::G:
|
||||
// Toggle grid
|
||||
if (Input::IsKeyPressed(PM_KEY_LEFT_CONTROL))
|
||||
if (Input::IsKeyPressed(KeyCode::LEFT_CONTROL))
|
||||
SceneRenderer::GetOptions().ShowGrid = !SceneRenderer::GetOptions().ShowGrid;
|
||||
break;
|
||||
case PM_KEY_B:
|
||||
case KeyCode::B:
|
||||
// Toggle bounding boxes
|
||||
if (Input::IsKeyPressed(PM_KEY_LEFT_CONTROL))
|
||||
if (Input::IsKeyPressed(KeyCode::LEFT_CONTROL))
|
||||
{
|
||||
m_UIShowBoundingBoxes = !m_UIShowBoundingBoxes;
|
||||
ShowBoundingBoxes(m_UIShowBoundingBoxes, m_UIShowBoundingBoxesOnTop);
|
||||
@ -746,49 +795,57 @@ namespace Prism
|
||||
bool EditorLayer::OnMouseButtonPressedEvent(MouseButtonPressedEvent& e)
|
||||
{
|
||||
auto [mx, my] = Input::GetMousePosition();
|
||||
if (e.GetMouseButton() == PM_MOUSE_BUTTON_LEFT && !Input::IsKeyPressed(PM_KEY_LEFT_ALT) && !ImGuizmo::IsOver())
|
||||
if (e.GetMouseButton() == PM_MOUSE_BUTTON_LEFT && !Input::IsKeyPressed(KeyCode::LEFT_ALT) && !ImGuizmo::IsOver())
|
||||
{
|
||||
auto [mouseX, mouseY] = GetMouseViewportSpace();
|
||||
if (mouseX > -1.0f && mouseX < 1.0f && mouseY > -1.0f && mouseY < 1.0f)
|
||||
{
|
||||
auto [origin, direction] = CastRay(mouseX, mouseY);
|
||||
|
||||
m_SelectedSubmeshes.clear();
|
||||
auto mesh = m_MeshEntity->GetMesh();
|
||||
auto& submeshes = mesh->GetSubmeshes();
|
||||
float lastT = std::numeric_limits<float>::max();
|
||||
for (uint32_t i = 0; i < submeshes.size(); i++)
|
||||
m_SelectionContext.clear();
|
||||
const auto meshEntities = m_Scene->GetAllEntitiesWith<MeshComponent>();
|
||||
for (auto e : meshEntities)
|
||||
{
|
||||
auto& submesh = submeshes[i];
|
||||
Ray ray = {
|
||||
glm::inverse(m_MeshEntity->GetTransform() * submesh.Transform) * glm::vec4(origin, 1.0f),
|
||||
glm::inverse(glm::mat3(m_MeshEntity->GetTransform()) * glm::mat3(submesh.Transform)) * direction
|
||||
};
|
||||
Entity entity = { e, m_Scene.Raw() };
|
||||
auto mesh = entity.GetComponent<MeshComponent>().Mesh;
|
||||
|
||||
float t;
|
||||
const bool intersects = ray.IntersectsAABB(submesh.BoundingBox, t);
|
||||
if (intersects)
|
||||
if (!mesh)
|
||||
continue;
|
||||
|
||||
auto& submeshes = mesh->GetSubmeshes();
|
||||
float lastT = std::numeric_limits<float>::max();
|
||||
for (uint32_t i = 0; i < submeshes.size(); i++)
|
||||
{
|
||||
const auto& triangleCache = mesh->GetTriangleCache(i);
|
||||
for (const auto& triangle : triangleCache)
|
||||
auto& submesh = submeshes[i];
|
||||
Ray ray = {
|
||||
glm::inverse(entity.Transform() * submesh.Transform) * glm::vec4(origin, 1.0f),
|
||||
glm::inverse(glm::mat3(entity.Transform()) * glm::mat3(submesh.Transform)) * direction
|
||||
};
|
||||
|
||||
float t;
|
||||
if (bool intersects = ray.IntersectsAABB(submesh.BoundingBox, t))
|
||||
{
|
||||
if (ray.IntersectsTriangle(triangle.V0.Position, triangle.V1.Position, triangle.V2.Position, t))
|
||||
const auto& triangleCache = mesh->GetTriangleCache(i);
|
||||
for (const auto& triangle : triangleCache)
|
||||
{
|
||||
PM_CLIENT_WARN("INTERSECTION: {0}, t={1}", submesh.NodeName, t);
|
||||
m_SelectedSubmeshes.push_back({ &submesh, t });
|
||||
break;
|
||||
if (ray.IntersectsTriangle(triangle.V0.Position, triangle.V1.Position, triangle.V2.Position, t))
|
||||
{
|
||||
PM_CLIENT_WARN("INTERSECTION: {0}, t={1}", submesh.NodeName, t);
|
||||
m_SelectionContext.push_back({ entity, &submesh, t });
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
std::sort(m_SelectedSubmeshes.begin(), m_SelectedSubmeshes.end(), [](auto& a, auto& b) { return a.Distance < b.Distance; });
|
||||
|
||||
// TODO: Handle mesh being deleted, etc.
|
||||
if (!m_SelectedSubmeshes.empty())
|
||||
m_CurrentlySelectedTransform = &m_SelectedSubmeshes[0].Mesh->Transform;
|
||||
else
|
||||
m_CurrentlySelectedTransform = &m_MeshEntity->Transform();
|
||||
|
||||
std::sort(m_SelectionContext.begin(), m_SelectionContext.end(), [](auto& a, auto& b)
|
||||
{
|
||||
return a.Distance < b.Distance;
|
||||
});
|
||||
if (!m_SelectionContext.empty())
|
||||
OnSelected(m_SelectionContext[0]);
|
||||
}
|
||||
}
|
||||
return false;
|
||||
@ -815,13 +872,29 @@ namespace Prism
|
||||
{
|
||||
const glm::vec4 mouseClipPos = { mx, my, -1.0f, 1.0f };
|
||||
|
||||
const auto inverseProj = glm::inverse(m_Scene->GetCamera().GetProjectionMatrix());
|
||||
const auto inverseView = glm::inverse(glm::mat3(m_Scene->GetCamera().GetViewMatrix()));
|
||||
const auto inverseProj = glm::inverse(m_CameraEntity.GetComponent<CameraComponent>().Camera.GetProjectionMatrix());
|
||||
const auto inverseView = glm::inverse(glm::mat3(m_CameraEntity.GetComponent<CameraComponent>().Camera.GetViewMatrix()));
|
||||
|
||||
const glm::vec4 ray = inverseProj * mouseClipPos;
|
||||
glm::vec3 rayPos = m_Scene->GetCamera().GetPosition();
|
||||
glm::vec3 rayPos = m_CameraEntity.GetComponent<CameraComponent>().Camera.GetPosition();
|
||||
glm::vec3 rayDir = inverseView * glm::vec3(ray);
|
||||
|
||||
return { rayPos, rayDir };
|
||||
}
|
||||
|
||||
void EditorLayer::OnSelected(const SelectedSubmesh& selectionContext)
|
||||
{
|
||||
m_SceneHierarchyPanel->SetSelected(selectionContext.Entity);
|
||||
}
|
||||
|
||||
Ray EditorLayer::CastMouseRay()
|
||||
{
|
||||
auto [mouseX, mouseY] = GetMouseViewportSpace();
|
||||
if (mouseX > -1.0f && mouseX < 1.0f && mouseY > -1.0f && mouseY < 1.0f)
|
||||
{
|
||||
auto [origin, direction] = CastRay(mouseX, mouseY);
|
||||
return Ray(origin, direction);
|
||||
}
|
||||
return Ray::Zero();
|
||||
}
|
||||
}
|
||||
|
||||
@ -32,6 +32,14 @@ namespace Prism
|
||||
std::pair<float, float> GetMouseViewportSpace() const;
|
||||
std::pair<glm::vec3, glm::vec3> CastRay(float mx, float my);
|
||||
|
||||
struct SelectedSubmesh
|
||||
{
|
||||
Prism::Entity Entity;
|
||||
Submesh* Mesh;
|
||||
float Distance;
|
||||
};
|
||||
void OnSelected(const SelectedSubmesh& selectionContext);
|
||||
Ray CastMouseRay();
|
||||
private:
|
||||
Scope<SceneHierarchyPanel> m_SceneHierarchyPanel;
|
||||
|
||||
@ -39,9 +47,9 @@ namespace Prism
|
||||
Ref<Scene> m_SphereScene;
|
||||
Ref<Scene> m_ActiveScene;
|
||||
|
||||
Entity* m_MeshEntity = nullptr;
|
||||
Entity m_MeshEntity;
|
||||
Entity m_CameraEntity;
|
||||
|
||||
Ref<Mesh> m_PlaneMesh;
|
||||
Ref<Material> m_SphereBaseMaterial;
|
||||
|
||||
Ref<Material> m_MeshMaterial;
|
||||
@ -55,12 +63,14 @@ namespace Prism
|
||||
int m_GizmoType = -1; // -1 = no gizmo
|
||||
float m_SnapValue = 0.5f;
|
||||
|
||||
struct SelectedSubmesh
|
||||
enum class SelectionMode
|
||||
{
|
||||
Submesh* Mesh;
|
||||
float Distance;
|
||||
None = 0, Entity = 1, SubMesh = 2
|
||||
};
|
||||
std::vector<SelectedSubmesh> m_SelectedSubmeshes;
|
||||
SelectionMode m_SelectionMode = SelectionMode::Entity;
|
||||
|
||||
std::vector<SelectedSubmesh> m_SelectionContext;
|
||||
glm::mat4* m_RelativeTransform = nullptr;
|
||||
glm::mat4* m_CurrentlySelectedTransform = nullptr;
|
||||
|
||||
// configure button
|
||||
|
||||
BIN
Editor/library/mono/net8.0/Microsoft.CSharp.dll
Normal file
BIN
Editor/library/mono/net8.0/Microsoft.CSharp.dll
Normal file
Binary file not shown.
840
Editor/library/mono/net8.0/Microsoft.NETCore.App.deps.json
Normal file
840
Editor/library/mono/net8.0/Microsoft.NETCore.App.deps.json
Normal file
@ -0,0 +1,840 @@
|
||||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v8.0/win-x64",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v8.0": {},
|
||||
".NETCoreApp,Version=v8.0/win-x64": {
|
||||
"Microsoft.NETCore.App.Runtime.Mono.win-x64/8.0.22": {
|
||||
"runtime": {
|
||||
"System.Private.CoreLib.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"Microsoft.CSharp.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"Microsoft.VisualBasic.Core.dll": {
|
||||
"assemblyVersion": "13.0.0.0",
|
||||
"fileVersion": "13.0.2225.52707"
|
||||
},
|
||||
"Microsoft.VisualBasic.dll": {
|
||||
"assemblyVersion": "10.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"Microsoft.Win32.Primitives.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"Microsoft.Win32.Registry.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"mscorlib.dll": {
|
||||
"assemblyVersion": "4.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"netstandard.dll": {
|
||||
"assemblyVersion": "2.1.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.AppContext.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Buffers.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Collections.Concurrent.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Collections.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Collections.Immutable.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Collections.NonGeneric.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Collections.Specialized.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.ComponentModel.Annotations.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.ComponentModel.DataAnnotations.dll": {
|
||||
"assemblyVersion": "4.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.ComponentModel.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.ComponentModel.EventBasedAsync.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.ComponentModel.Primitives.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.ComponentModel.TypeConverter.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Configuration.dll": {
|
||||
"assemblyVersion": "4.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Console.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Core.dll": {
|
||||
"assemblyVersion": "4.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Data.Common.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Data.DataSetExtensions.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Data.dll": {
|
||||
"assemblyVersion": "4.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Diagnostics.Contracts.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Diagnostics.Debug.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Diagnostics.DiagnosticSource.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Diagnostics.FileVersionInfo.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Diagnostics.Process.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Diagnostics.StackTrace.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Diagnostics.TextWriterTraceListener.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Diagnostics.Tools.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Diagnostics.TraceSource.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Diagnostics.Tracing.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.dll": {
|
||||
"assemblyVersion": "4.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Drawing.dll": {
|
||||
"assemblyVersion": "4.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Drawing.Primitives.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Dynamic.Runtime.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Formats.Asn1.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Formats.Tar.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Globalization.Calendars.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Globalization.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Globalization.Extensions.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.IO.Compression.Brotli.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.IO.Compression.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.IO.Compression.FileSystem.dll": {
|
||||
"assemblyVersion": "4.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.IO.Compression.ZipFile.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.IO.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.IO.FileSystem.AccessControl.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.IO.FileSystem.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.IO.FileSystem.DriveInfo.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.IO.FileSystem.Primitives.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.IO.FileSystem.Watcher.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.IO.IsolatedStorage.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.IO.MemoryMappedFiles.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.IO.Pipes.AccessControl.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.IO.Pipes.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.IO.UnmanagedMemoryStream.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Linq.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Linq.Expressions.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Linq.Parallel.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Linq.Queryable.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Memory.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Net.dll": {
|
||||
"assemblyVersion": "4.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Net.Http.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Net.Http.Json.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Net.HttpListener.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Net.Mail.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Net.NameResolution.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Net.NetworkInformation.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Net.Ping.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Net.Primitives.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Net.Quic.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Net.Requests.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Net.Security.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Net.ServicePoint.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Net.Sockets.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Net.WebClient.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Net.WebHeaderCollection.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Net.WebProxy.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Net.WebSockets.Client.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Net.WebSockets.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Numerics.dll": {
|
||||
"assemblyVersion": "4.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Numerics.Vectors.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.ObjectModel.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Private.DataContractSerialization.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Private.Uri.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Private.Xml.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Private.Xml.Linq.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Reflection.DispatchProxy.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Reflection.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Reflection.Emit.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Reflection.Emit.ILGeneration.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Reflection.Emit.Lightweight.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Reflection.Extensions.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Reflection.Metadata.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Reflection.Primitives.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Reflection.TypeExtensions.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Resources.Reader.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Resources.ResourceManager.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Resources.Writer.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Runtime.CompilerServices.Unsafe.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Runtime.CompilerServices.VisualC.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Runtime.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Runtime.Extensions.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Runtime.Handles.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Runtime.InteropServices.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Runtime.InteropServices.JavaScript.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Runtime.InteropServices.RuntimeInformation.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Runtime.Intrinsics.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Runtime.Loader.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Runtime.Numerics.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Runtime.Serialization.dll": {
|
||||
"assemblyVersion": "4.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Runtime.Serialization.Formatters.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Runtime.Serialization.Json.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Runtime.Serialization.Primitives.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Runtime.Serialization.Xml.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Security.AccessControl.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Security.Claims.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Security.Cryptography.Algorithms.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Security.Cryptography.Cng.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Security.Cryptography.Csp.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Security.Cryptography.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Security.Cryptography.Encoding.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Security.Cryptography.OpenSsl.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Security.Cryptography.Primitives.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Security.Cryptography.X509Certificates.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Security.dll": {
|
||||
"assemblyVersion": "4.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Security.Principal.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Security.Principal.Windows.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Security.SecureString.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.ServiceModel.Web.dll": {
|
||||
"assemblyVersion": "4.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.ServiceProcess.dll": {
|
||||
"assemblyVersion": "4.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Text.Encoding.CodePages.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Text.Encoding.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Text.Encoding.Extensions.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Text.Encodings.Web.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Text.Json.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Text.RegularExpressions.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Threading.Channels.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Threading.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Threading.Overlapped.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Threading.Tasks.Dataflow.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Threading.Tasks.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Threading.Tasks.Extensions.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Threading.Tasks.Parallel.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Threading.Thread.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Threading.ThreadPool.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Threading.Timer.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Transactions.dll": {
|
||||
"assemblyVersion": "4.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Transactions.Local.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.ValueTuple.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Web.dll": {
|
||||
"assemblyVersion": "4.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Web.HttpUtility.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Windows.dll": {
|
||||
"assemblyVersion": "4.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Xml.dll": {
|
||||
"assemblyVersion": "4.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Xml.Linq.dll": {
|
||||
"assemblyVersion": "4.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Xml.ReaderWriter.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Xml.Serialization.dll": {
|
||||
"assemblyVersion": "4.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Xml.XDocument.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Xml.XmlDocument.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Xml.XmlSerializer.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Xml.XPath.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"System.Xml.XPath.XDocument.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"WindowsBase.dll": {
|
||||
"assemblyVersion": "4.0.0.0",
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
}
|
||||
},
|
||||
"native": {
|
||||
"coreclr.dll": {
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"msquic.dll": {
|
||||
"fileVersion": "2.4.8.0"
|
||||
},
|
||||
"System.IO.Compression.Native.dll": {
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"hostpolicy.dll": {
|
||||
"fileVersion": "8.0.2225.52707"
|
||||
},
|
||||
"Microsoft.DiaSymReader.Native.amd64.dll": {
|
||||
"fileVersion": "14.42.34436.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"Microsoft.NETCore.App.Runtime.Mono.win-x64/8.0.22": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "",
|
||||
"path": "microsoft.netcore.app.runtime.mono.win-x64/8.0.22"
|
||||
}
|
||||
},
|
||||
"runtimes": {
|
||||
"win-x64": [
|
||||
"win",
|
||||
"any",
|
||||
"base"
|
||||
],
|
||||
"win-x64-aot": [
|
||||
"win-aot",
|
||||
"win-x64",
|
||||
"win",
|
||||
"aot",
|
||||
"any",
|
||||
"base"
|
||||
],
|
||||
"win10-x64": [
|
||||
"win10",
|
||||
"win81-x64",
|
||||
"win81",
|
||||
"win8-x64",
|
||||
"win8",
|
||||
"win7-x64",
|
||||
"win7",
|
||||
"win-x64",
|
||||
"win",
|
||||
"any",
|
||||
"base"
|
||||
],
|
||||
"win10-x64-aot": [
|
||||
"win10-aot",
|
||||
"win10-x64",
|
||||
"win10",
|
||||
"win81-x64-aot",
|
||||
"win81-aot",
|
||||
"win81-x64",
|
||||
"win81",
|
||||
"win8-x64-aot",
|
||||
"win8-aot",
|
||||
"win8-x64",
|
||||
"win8",
|
||||
"win7-x64-aot",
|
||||
"win7-aot",
|
||||
"win7-x64",
|
||||
"win7",
|
||||
"win-x64-aot",
|
||||
"win-aot",
|
||||
"win-x64",
|
||||
"win",
|
||||
"aot",
|
||||
"any",
|
||||
"base"
|
||||
],
|
||||
"win7-x64": [
|
||||
"win7",
|
||||
"win-x64",
|
||||
"win",
|
||||
"any",
|
||||
"base"
|
||||
],
|
||||
"win7-x64-aot": [
|
||||
"win7-aot",
|
||||
"win7-x64",
|
||||
"win7",
|
||||
"win-x64-aot",
|
||||
"win-aot",
|
||||
"win-x64",
|
||||
"win",
|
||||
"aot",
|
||||
"any",
|
||||
"base"
|
||||
],
|
||||
"win8-x64": [
|
||||
"win8",
|
||||
"win7-x64",
|
||||
"win7",
|
||||
"win-x64",
|
||||
"win",
|
||||
"any",
|
||||
"base"
|
||||
],
|
||||
"win8-x64-aot": [
|
||||
"win8-aot",
|
||||
"win8-x64",
|
||||
"win8",
|
||||
"win7-x64-aot",
|
||||
"win7-aot",
|
||||
"win7-x64",
|
||||
"win7",
|
||||
"win-x64-aot",
|
||||
"win-aot",
|
||||
"win-x64",
|
||||
"win",
|
||||
"aot",
|
||||
"any",
|
||||
"base"
|
||||
],
|
||||
"win81-x64": [
|
||||
"win81",
|
||||
"win8-x64",
|
||||
"win8",
|
||||
"win7-x64",
|
||||
"win7",
|
||||
"win-x64",
|
||||
"win",
|
||||
"any",
|
||||
"base"
|
||||
],
|
||||
"win81-x64-aot": [
|
||||
"win81-aot",
|
||||
"win81-x64",
|
||||
"win81",
|
||||
"win8-x64-aot",
|
||||
"win8-aot",
|
||||
"win8-x64",
|
||||
"win8",
|
||||
"win7-x64-aot",
|
||||
"win7-aot",
|
||||
"win7-x64",
|
||||
"win7",
|
||||
"win-x64-aot",
|
||||
"win-aot",
|
||||
"win-x64",
|
||||
"win",
|
||||
"aot",
|
||||
"any",
|
||||
"base"
|
||||
]
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,5 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"tfm": "net8.0"
|
||||
}
|
||||
}
|
||||
BIN
Editor/library/mono/net8.0/Microsoft.VisualBasic.Core.dll
Normal file
BIN
Editor/library/mono/net8.0/Microsoft.VisualBasic.Core.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/Microsoft.VisualBasic.dll
Normal file
BIN
Editor/library/mono/net8.0/Microsoft.VisualBasic.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/Microsoft.Win32.Primitives.dll
Normal file
BIN
Editor/library/mono/net8.0/Microsoft.Win32.Primitives.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/Microsoft.Win32.Registry.dll
Normal file
BIN
Editor/library/mono/net8.0/Microsoft.Win32.Registry.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.AppContext.dll
Normal file
BIN
Editor/library/mono/net8.0/System.AppContext.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.Buffers.dll
Normal file
BIN
Editor/library/mono/net8.0/System.Buffers.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.Collections.Concurrent.dll
Normal file
BIN
Editor/library/mono/net8.0/System.Collections.Concurrent.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.Collections.Immutable.dll
Normal file
BIN
Editor/library/mono/net8.0/System.Collections.Immutable.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.Collections.NonGeneric.dll
Normal file
BIN
Editor/library/mono/net8.0/System.Collections.NonGeneric.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.Collections.Specialized.dll
Normal file
BIN
Editor/library/mono/net8.0/System.Collections.Specialized.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.Collections.dll
Normal file
BIN
Editor/library/mono/net8.0/System.Collections.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.ComponentModel.Annotations.dll
Normal file
BIN
Editor/library/mono/net8.0/System.ComponentModel.Annotations.dll
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.ComponentModel.Primitives.dll
Normal file
BIN
Editor/library/mono/net8.0/System.ComponentModel.Primitives.dll
Normal file
Binary file not shown.
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.ComponentModel.dll
Normal file
BIN
Editor/library/mono/net8.0/System.ComponentModel.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.Configuration.dll
Normal file
BIN
Editor/library/mono/net8.0/System.Configuration.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.Console.dll
Normal file
BIN
Editor/library/mono/net8.0/System.Console.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.Core.dll
Normal file
BIN
Editor/library/mono/net8.0/System.Core.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.Data.Common.dll
Normal file
BIN
Editor/library/mono/net8.0/System.Data.Common.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.Data.DataSetExtensions.dll
Normal file
BIN
Editor/library/mono/net8.0/System.Data.DataSetExtensions.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.Data.dll
Normal file
BIN
Editor/library/mono/net8.0/System.Data.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.Diagnostics.Contracts.dll
Normal file
BIN
Editor/library/mono/net8.0/System.Diagnostics.Contracts.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.Diagnostics.Debug.dll
Normal file
BIN
Editor/library/mono/net8.0/System.Diagnostics.Debug.dll
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.Diagnostics.Process.dll
Normal file
BIN
Editor/library/mono/net8.0/System.Diagnostics.Process.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.Diagnostics.StackTrace.dll
Normal file
BIN
Editor/library/mono/net8.0/System.Diagnostics.StackTrace.dll
Normal file
Binary file not shown.
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.Diagnostics.Tools.dll
Normal file
BIN
Editor/library/mono/net8.0/System.Diagnostics.Tools.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.Diagnostics.TraceSource.dll
Normal file
BIN
Editor/library/mono/net8.0/System.Diagnostics.TraceSource.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.Diagnostics.Tracing.dll
Normal file
BIN
Editor/library/mono/net8.0/System.Diagnostics.Tracing.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.Drawing.Primitives.dll
Normal file
BIN
Editor/library/mono/net8.0/System.Drawing.Primitives.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.Drawing.dll
Normal file
BIN
Editor/library/mono/net8.0/System.Drawing.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.Dynamic.Runtime.dll
Normal file
BIN
Editor/library/mono/net8.0/System.Dynamic.Runtime.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.Formats.Asn1.dll
Normal file
BIN
Editor/library/mono/net8.0/System.Formats.Asn1.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.Formats.Tar.dll
Normal file
BIN
Editor/library/mono/net8.0/System.Formats.Tar.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.Globalization.Calendars.dll
Normal file
BIN
Editor/library/mono/net8.0/System.Globalization.Calendars.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.Globalization.Extensions.dll
Normal file
BIN
Editor/library/mono/net8.0/System.Globalization.Extensions.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.Globalization.dll
Normal file
BIN
Editor/library/mono/net8.0/System.Globalization.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.IO.Compression.Brotli.dll
Normal file
BIN
Editor/library/mono/net8.0/System.IO.Compression.Brotli.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.IO.Compression.FileSystem.dll
Normal file
BIN
Editor/library/mono/net8.0/System.IO.Compression.FileSystem.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.IO.Compression.ZipFile.dll
Normal file
BIN
Editor/library/mono/net8.0/System.IO.Compression.ZipFile.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.IO.Compression.dll
Normal file
BIN
Editor/library/mono/net8.0/System.IO.Compression.dll
Normal file
Binary file not shown.
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.IO.FileSystem.DriveInfo.dll
Normal file
BIN
Editor/library/mono/net8.0/System.IO.FileSystem.DriveInfo.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.IO.FileSystem.Primitives.dll
Normal file
BIN
Editor/library/mono/net8.0/System.IO.FileSystem.Primitives.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.IO.FileSystem.Watcher.dll
Normal file
BIN
Editor/library/mono/net8.0/System.IO.FileSystem.Watcher.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.IO.FileSystem.dll
Normal file
BIN
Editor/library/mono/net8.0/System.IO.FileSystem.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.IO.IsolatedStorage.dll
Normal file
BIN
Editor/library/mono/net8.0/System.IO.IsolatedStorage.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.IO.MemoryMappedFiles.dll
Normal file
BIN
Editor/library/mono/net8.0/System.IO.MemoryMappedFiles.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.IO.Pipes.AccessControl.dll
Normal file
BIN
Editor/library/mono/net8.0/System.IO.Pipes.AccessControl.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.IO.Pipes.dll
Normal file
BIN
Editor/library/mono/net8.0/System.IO.Pipes.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.IO.UnmanagedMemoryStream.dll
Normal file
BIN
Editor/library/mono/net8.0/System.IO.UnmanagedMemoryStream.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.IO.dll
Normal file
BIN
Editor/library/mono/net8.0/System.IO.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.Linq.Expressions.dll
Normal file
BIN
Editor/library/mono/net8.0/System.Linq.Expressions.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.Linq.Parallel.dll
Normal file
BIN
Editor/library/mono/net8.0/System.Linq.Parallel.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.Linq.Queryable.dll
Normal file
BIN
Editor/library/mono/net8.0/System.Linq.Queryable.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.Linq.dll
Normal file
BIN
Editor/library/mono/net8.0/System.Linq.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.Memory.dll
Normal file
BIN
Editor/library/mono/net8.0/System.Memory.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.Net.Http.Json.dll
Normal file
BIN
Editor/library/mono/net8.0/System.Net.Http.Json.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.Net.Http.dll
Normal file
BIN
Editor/library/mono/net8.0/System.Net.Http.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.Net.HttpListener.dll
Normal file
BIN
Editor/library/mono/net8.0/System.Net.HttpListener.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.Net.Mail.dll
Normal file
BIN
Editor/library/mono/net8.0/System.Net.Mail.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.Net.NameResolution.dll
Normal file
BIN
Editor/library/mono/net8.0/System.Net.NameResolution.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.Net.NetworkInformation.dll
Normal file
BIN
Editor/library/mono/net8.0/System.Net.NetworkInformation.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.Net.Ping.dll
Normal file
BIN
Editor/library/mono/net8.0/System.Net.Ping.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.Net.Primitives.dll
Normal file
BIN
Editor/library/mono/net8.0/System.Net.Primitives.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.Net.Quic.dll
Normal file
BIN
Editor/library/mono/net8.0/System.Net.Quic.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.Net.Requests.dll
Normal file
BIN
Editor/library/mono/net8.0/System.Net.Requests.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.Net.Security.dll
Normal file
BIN
Editor/library/mono/net8.0/System.Net.Security.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.Net.ServicePoint.dll
Normal file
BIN
Editor/library/mono/net8.0/System.Net.ServicePoint.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.Net.Sockets.dll
Normal file
BIN
Editor/library/mono/net8.0/System.Net.Sockets.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.Net.WebClient.dll
Normal file
BIN
Editor/library/mono/net8.0/System.Net.WebClient.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.Net.WebHeaderCollection.dll
Normal file
BIN
Editor/library/mono/net8.0/System.Net.WebHeaderCollection.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.Net.WebProxy.dll
Normal file
BIN
Editor/library/mono/net8.0/System.Net.WebProxy.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.Net.WebSockets.Client.dll
Normal file
BIN
Editor/library/mono/net8.0/System.Net.WebSockets.Client.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.Net.WebSockets.dll
Normal file
BIN
Editor/library/mono/net8.0/System.Net.WebSockets.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.Net.dll
Normal file
BIN
Editor/library/mono/net8.0/System.Net.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.Numerics.Vectors.dll
Normal file
BIN
Editor/library/mono/net8.0/System.Numerics.Vectors.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.Numerics.dll
Normal file
BIN
Editor/library/mono/net8.0/System.Numerics.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.ObjectModel.dll
Normal file
BIN
Editor/library/mono/net8.0/System.ObjectModel.dll
Normal file
Binary file not shown.
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.Private.Uri.dll
Normal file
BIN
Editor/library/mono/net8.0/System.Private.Uri.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.Private.Xml.Linq.dll
Normal file
BIN
Editor/library/mono/net8.0/System.Private.Xml.Linq.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.Private.Xml.dll
Normal file
BIN
Editor/library/mono/net8.0/System.Private.Xml.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.Reflection.DispatchProxy.dll
Normal file
BIN
Editor/library/mono/net8.0/System.Reflection.DispatchProxy.dll
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.Reflection.Emit.dll
Normal file
BIN
Editor/library/mono/net8.0/System.Reflection.Emit.dll
Normal file
Binary file not shown.
BIN
Editor/library/mono/net8.0/System.Reflection.Extensions.dll
Normal file
BIN
Editor/library/mono/net8.0/System.Reflection.Extensions.dll
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user