Skip to content
This repository has been archived by the owner on Feb 15, 2025. It is now read-only.

Mr.DJAuto 底力大提升 #156

Merged
merged 10 commits into from
Aug 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions Assets/Scenes/SampleScene.unity
Original file line number Diff line number Diff line change
Expand Up @@ -2259,7 +2259,7 @@ RectTransform:
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0.5, y: 0.5}
m_AnchorMax: {x: 0.5, y: 0.5}
m_AnchoredPosition: {x: -61.2, y: -35.86}
m_AnchoredPosition: {x: -61.2, y: -31.4}
m_SizeDelta: {x: 15.358, y: 33.7}
m_Pivot: {x: 0.5, y: 0.5}
--- !u!114 &393224021
Expand Down Expand Up @@ -4245,7 +4245,6 @@ MonoBehaviour:
m_Name:
m_EditorClassIdentifier:
mainCamera: {fileID: 519420031}
AutoPlay: 1
--- !u!224 &601344169
RectTransform:
m_ObjectHideFlags: 0
Expand Down Expand Up @@ -10672,7 +10671,7 @@ RectTransform:
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0.5, y: 0.5}
m_AnchorMax: {x: 0.5, y: 0.5}
m_AnchoredPosition: {x: -77.116, y: -35.86}
m_AnchoredPosition: {x: -77.116, y: -31.4}
m_SizeDelta: {x: 15.358, y: 33.7}
m_Pivot: {x: 0.5, y: 0.5}
--- !u!114 &1678688328
Expand Down
2 changes: 1 addition & 1 deletion Assets/Scripts/HttpHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

public class HttpHandler : MonoBehaviour
{
public bool IsReloding { get; set; } = false;
public static bool IsReloding { get; set; } = false;
private readonly HttpListener http = new();
private Task listen;
private string request = "";
Expand Down
2 changes: 1 addition & 1 deletion Assets/Scripts/JsonDataLoader.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Assets.Scripts.IO;
using Assets.Scripts.Types;
using Assets.Scripts.Notes;
using Newtonsoft.Json;
using System;
Expand Down
2 changes: 1 addition & 1 deletion Assets/Scripts/JudgeArea.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Assets.Scripts.IO;
using Assets.Scripts.Types;
using System.Collections.Generic;
using System.Linq;

Expand Down
2 changes: 1 addition & 1 deletion Assets/Scripts/Misc/DestroySelf.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using UnityEngine;

#nullable enable
public class DestroySelf : MonoBehaviour
{
public bool ifDestroy;
Expand Down
2 changes: 1 addition & 1 deletion Assets/Scripts/Misc/DontDestroyOnLoad.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using UnityEngine;

#nullable enable
public class DontDestroyOnLoad : MonoBehaviour
{
private void Start()
Expand Down
66 changes: 0 additions & 66 deletions Assets/Scripts/Misc/Input.cs

This file was deleted.

Loading