Merge branch 'master' into game-ntrIdol

This commit is contained in:
minenice55 2022-03-14 10:35:33 -04:00
commit df068c3899
123 changed files with 296 additions and 186 deletions

View file

@ -1,9 +1,9 @@
using UnityEditor;
using UnityEditor.UI;
using UnityEngine;
using RhythmHeavenMania;
using HeavenStudio;
namespace RhythmHeavenMania.Editor
namespace HeavenStudio.Editor
{
[CustomEditor(typeof(TempoFinderButton))]
public class TempoFinderButtonEditor : ButtonEditor

View file

@ -0,0 +1,22 @@
fileFormatVersion: 2
guid: fa0ac14cddd20ef4d9b6eafd42de8fec
AudioImporter:
externalObjects: {}
serializedVersion: 6
defaultSettings:
loadType: 0
sampleRateSetting: 0
sampleRateOverride: 44100
compressionFormat: 1
quality: 1
conversionMode: 0
platformSettingOverrides: {}
forceToMono: 0
normalize: 1
preloadAudioData: 1
loadInBackground: 0
ambisonic: 0
3D: 1
userData:
assetBundleName:
assetBundleVariant:

View file

@ -0,0 +1,22 @@
fileFormatVersion: 2
guid: 58696a20234617b4495105adaa2b468e
AudioImporter:
externalObjects: {}
serializedVersion: 6
defaultSettings:
loadType: 0
sampleRateSetting: 0
sampleRateOverride: 44100
compressionFormat: 1
quality: 1
conversionMode: 0
platformSettingOverrides: {}
forceToMono: 0
normalize: 1
preloadAudioData: 1
loadInBackground: 0
ambisonic: 0
3D: 1
userData:
assetBundleName:
assetBundleVariant:

View file

@ -0,0 +1,22 @@
fileFormatVersion: 2
guid: 322aea7dea5d81f4db1adbe321001b4f
AudioImporter:
externalObjects: {}
serializedVersion: 6
defaultSettings:
loadType: 0
sampleRateSetting: 0
sampleRateOverride: 44100
compressionFormat: 1
quality: 1
conversionMode: 0
platformSettingOverrides: {}
forceToMono: 0
normalize: 1
preloadAudioData: 1
loadInBackground: 0
ambisonic: 0
3D: 1
userData:
assetBundleName:
assetBundleVariant:

View file

@ -0,0 +1,22 @@
fileFormatVersion: 2
guid: 515581093d4da8e42b05ae161866221d
AudioImporter:
externalObjects: {}
serializedVersion: 6
defaultSettings:
loadType: 0
sampleRateSetting: 0
sampleRateOverride: 44100
compressionFormat: 1
quality: 1
conversionMode: 0
platformSettingOverrides: {}
forceToMono: 0
normalize: 1
preloadAudioData: 1
loadInBackground: 0
ambisonic: 0
3D: 1
userData:
assetBundleName:
assetBundleVariant:

View file

@ -0,0 +1,22 @@
fileFormatVersion: 2
guid: b30a65e4c8b32cd46b08f516ca3614b3
AudioImporter:
externalObjects: {}
serializedVersion: 6
defaultSettings:
loadType: 0
sampleRateSetting: 0
sampleRateOverride: 44100
compressionFormat: 1
quality: 1
conversionMode: 0
platformSettingOverrides: {}
forceToMono: 0
normalize: 1
preloadAudioData: 1
loadInBackground: 0
ambisonic: 0
3D: 1
userData:
assetBundleName:
assetBundleVariant:

View file

@ -3,7 +3,7 @@ using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace RhythmHeavenMania
namespace HeavenStudio
{
public class AudioDspTimeKeeper : MonoBehaviour
{

View file

@ -4,9 +4,9 @@ using UnityEngine;
using Newtonsoft.Json;
using RhythmHeavenMania.Util;
using HeavenStudio.Util;
namespace RhythmHeavenMania
namespace HeavenStudio
{
[Serializable]
public class Beatmap

View file

@ -4,7 +4,7 @@ using UnityEngine;
using DG.Tweening;
namespace RhythmHeavenMania
namespace HeavenStudio
{
public class CircleCursor : MonoBehaviour
{

View file

@ -2,7 +2,7 @@ using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace RhythmHeavenMania.Common
namespace HeavenStudio.Common
{
public class Billboard : MonoBehaviour
{

View file

@ -2,7 +2,7 @@ using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace RhythmHeavenMania.Common
namespace HeavenStudio.Common
{
public class FollowMouse : MonoBehaviour
{

View file

@ -3,7 +3,7 @@ using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
namespace RhythmHeavenMania.Common
namespace HeavenStudio.Common
{
public class Parallax : MonoBehaviour
{

View file

@ -2,7 +2,7 @@ using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace RhythmHeavenMania.Common
namespace HeavenStudio.Common
{
public class Scroll : MonoBehaviour
{

View file

@ -5,7 +5,7 @@ using UnityEngine.Audio;
using Starpelly;
namespace RhythmHeavenMania
namespace HeavenStudio
{
// [RequireComponent(typeof(AudioSource))]
public class Conductor : MonoBehaviour

View file

@ -2,7 +2,7 @@ using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace RhythmHeavenMania
namespace HeavenStudio
{
public static class Datamodel
{

View file

@ -4,7 +4,7 @@ using UnityEngine;
using TMPro;
namespace RhythmHeavenMania
namespace HeavenStudio
{
public class DebugUI : MonoBehaviour
{

View file

@ -5,9 +5,9 @@ using UnityEngine.EventSystems;
using UnityEngine.UI;
using TMPro;
using RhythmHeavenMania.Common;
using HeavenStudio.Common;
namespace RhythmHeavenMania.Deprecated
namespace HeavenStudio.Deprecated
{
public class Tooltip : MonoBehaviour
{

View file

@ -6,7 +6,7 @@ using System.Text;
using Discord;
using System;
namespace RhythmHeavenMania.DiscordRPC
namespace HeavenStudio.DiscordRPC
{
public class DiscordController : MonoBehaviour
{

View file

@ -1,6 +1,6 @@
using UnityEngine;
namespace RhythmHeavenMania.DiscordRPC
namespace HeavenStudio.DiscordRPC
{
public class DiscordRPC : MonoBehaviour
{

View file

@ -4,7 +4,7 @@ using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Events;
namespace RhythmHeavenMania
namespace HeavenStudio
{
public class EventCaller : MonoBehaviour
{

View file

@ -2,7 +2,7 @@ using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace RhythmHeavenMania
namespace HeavenStudio
{
public class GameCamera : MonoBehaviour
{

View file

@ -1,4 +1,4 @@
namespace RhythmHeavenMania
namespace HeavenStudio
{
public class GameEvent
{

View file

@ -6,9 +6,9 @@ using UnityEngine;
using Starpelly;
using Newtonsoft.Json;
using RhythmHeavenMania.Games;
using HeavenStudio.Games;
namespace RhythmHeavenMania
namespace HeavenStudio
{
public class GameManager : MonoBehaviour
{

View file

@ -2,7 +2,7 @@ using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace RhythmHeavenMania
namespace HeavenStudio
{
public class GameProfiler : MonoBehaviour
{

View file

@ -2,7 +2,7 @@ using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace RhythmHeavenMania
namespace HeavenStudio
{
public class GameProperties
{

View file

@ -1,11 +1,11 @@
using DG.Tweening;
using NaughtyBezierCurves;
using RhythmHeavenMania.Util;
using HeavenStudio.Util;
using System;
using System.Collections.Generic;
using UnityEngine;
namespace RhythmHeavenMania.Games
namespace HeavenStudio.Games
{
using Scripts_BlueBear;
public class BlueBear : Minigame

View file

@ -4,9 +4,9 @@ using System;
using UnityEngine;
using NaughtyBezierCurves;
using RhythmHeavenMania.Util;
using HeavenStudio.Util;
namespace RhythmHeavenMania.Games.Scripts_BlueBear
namespace HeavenStudio.Games.Scripts_BlueBear
{
public class Treat : PlayerActionObject
{

View file

@ -2,8 +2,8 @@ using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using RhythmHeavenMania.Util;
namespace RhythmHeavenMania.Games.Scripts_BuiltToScaleDS
using HeavenStudio.Util;
namespace HeavenStudio.Games.Scripts_BuiltToScaleDS
{
public class BTSPiece : MonoBehaviour
{

View file

@ -3,9 +3,9 @@ using System.Collections.Generic;
using UnityEngine;
using System;
namespace RhythmHeavenMania.Games.Scripts_BuiltToScaleDS
namespace HeavenStudio.Games.Scripts_BuiltToScaleDS
{
using RhythmHeavenMania.Util;
using HeavenStudio.Util;
public class Blocks : PlayerActionObject
{
public float createBeat;

View file

@ -5,8 +5,8 @@ using NaughtyBezierCurves;
using DG.Tweening;
using System;
using RhythmHeavenMania.Util;
namespace RhythmHeavenMania.Games
using HeavenStudio.Util;
namespace HeavenStudio.Games
{
using Scripts_BuiltToScaleDS;

View file

@ -2,9 +2,9 @@ using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using RhythmHeavenMania.Util;
using HeavenStudio.Util;
namespace RhythmHeavenMania.Games
namespace HeavenStudio.Games
{
using Scripts_ClappyTrio;

View file

@ -2,9 +2,9 @@ using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using RhythmHeavenMania.Util;
using HeavenStudio.Util;
namespace RhythmHeavenMania.Games.Scripts_ClappyTrio
namespace HeavenStudio.Games.Scripts_ClappyTrio
{
public class ClappyTrioPlayer : PlayerActionObject
{

View file

@ -1,11 +1,11 @@
using DG.Tweening;
using NaughtyBezierCurves;
using RhythmHeavenMania.Util;
using HeavenStudio.Util;
using System;
using System.Collections.Generic;
using UnityEngine;
namespace RhythmHeavenMania.Games
namespace HeavenStudio.Games
{
using Scripts_CropStomp;

View file

@ -2,9 +2,9 @@ using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using RhythmHeavenMania.Util;
using HeavenStudio.Util;
namespace RhythmHeavenMania.Games.Scripts_CropStomp
namespace HeavenStudio.Games.Scripts_CropStomp
{
public class Farmer : PlayerActionObject
{

View file

@ -4,9 +4,9 @@ using UnityEngine;
using NaughtyBezierCurves;
using DG.Tweening;
using RhythmHeavenMania.Util;
using HeavenStudio.Util;
namespace RhythmHeavenMania.Games.Scripts_CropStomp
namespace HeavenStudio.Games.Scripts_CropStomp
{
public class Veggie : PlayerActionObject
{

View file

@ -1,9 +1,9 @@
using System.Collections.Generic;
using UnityEngine;
using RhythmHeavenMania.Util;
using HeavenStudio.Util;
namespace RhythmHeavenMania.Games
namespace HeavenStudio.Games
{
using Scripts_DJSchool;

View file

@ -3,10 +3,10 @@ using System.Collections.Generic;
using UnityEngine;
using DG.Tweening;
using RhythmHeavenMania.Util;
using HeavenStudio.Util;
using Starpelly;
namespace RhythmHeavenMania.Games.Scripts_DJSchool
namespace HeavenStudio.Games.Scripts_DJSchool
{
public class Student : PlayerActionObject
{

View file

@ -4,9 +4,9 @@ using UnityEngine;
using System;
using Starpelly;
using RhythmHeavenMania.Util;
using HeavenStudio.Util;
namespace RhythmHeavenMania.Games.Scripts_DrummingPractice
namespace HeavenStudio.Games.Scripts_DrummingPractice
{
public class Drummer : MonoBehaviour
{

View file

@ -2,9 +2,9 @@ using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using RhythmHeavenMania.Util;
using HeavenStudio.Util;
namespace RhythmHeavenMania.Games.Scripts_DrummingPractice
namespace HeavenStudio.Games.Scripts_DrummingPractice
{
public class DrummerHit : PlayerActionObject
{

View file

@ -4,9 +4,9 @@ using UnityEngine;
using System;
using Starpelly;
using RhythmHeavenMania.Util;
using HeavenStudio.Util;
namespace RhythmHeavenMania.Games
namespace HeavenStudio.Games
{
using Scripts_DrummingPractice;

View file

@ -1,9 +1,9 @@
using RhythmHeavenMania.Util;
using HeavenStudio.Util;
using System;
using System.Collections.Generic;
using UnityEngine;
namespace RhythmHeavenMania.Games
namespace HeavenStudio.Games
{
using Scripts_Fireworks;
public class Fireworks : Minigame

View file

@ -2,9 +2,9 @@ using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using RhythmHeavenMania.Util;
using HeavenStudio.Util;
namespace RhythmHeavenMania.Games.Scripts_Fireworks
namespace HeavenStudio.Games.Scripts_Fireworks
{
public class Rocket : PlayerActionObject
{

View file

@ -2,11 +2,11 @@ using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using RhythmHeavenMania.Util;
using HeavenStudio.Util;
using DG.Tweening;
namespace RhythmHeavenMania.Games
namespace HeavenStudio.Games
{
using Scripts_ForkLifter;

View file

@ -3,9 +3,9 @@ using System.Collections.Generic;
using System.Linq;
using UnityEngine;
using RhythmHeavenMania.Util;
using HeavenStudio.Util;
namespace RhythmHeavenMania.Games.Scripts_ForkLifter
namespace HeavenStudio.Games.Scripts_ForkLifter
{
public class ForkLifterHand : MonoBehaviour
{

View file

@ -4,9 +4,9 @@ using UnityEngine;
using DG.Tweening;
using RhythmHeavenMania.Util;
using HeavenStudio.Util;
namespace RhythmHeavenMania.Games.Scripts_ForkLifter
namespace HeavenStudio.Games.Scripts_ForkLifter
{
public class ForkLifterPlayer : MonoBehaviour
{

View file

@ -2,11 +2,11 @@ using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using RhythmHeavenMania.Util;
using HeavenStudio.Util;
using DG.Tweening;
namespace RhythmHeavenMania.Games.Scripts_ForkLifter
namespace HeavenStudio.Games.Scripts_ForkLifter
{
public class Pea : PlayerActionObject
{

View file

@ -2,10 +2,10 @@ using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using RhythmHeavenMania.Util;
using HeavenStudio.Util;
using System.Linq;
namespace RhythmHeavenMania.Games.Global
namespace HeavenStudio.Games.Global
{
public class Flash : MonoBehaviour
{

View file

@ -4,7 +4,7 @@ using UnityEngine;
using DG.Tweening;
namespace RhythmHeavenMania.Games.Scripts_KarateMan
namespace HeavenStudio.Games.Scripts_KarateMan
{
// Physics in Rhythm Heaven Mania? nah im just fuckin lazy
public class BarrelDestroyEffect : MonoBehaviour

View file

@ -2,9 +2,9 @@ using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using RhythmHeavenMania.Util;
using HeavenStudio.Util;
namespace RhythmHeavenMania.Games.Scripts_KarateMan
namespace HeavenStudio.Games.Scripts_KarateMan
{
public class Bomb : PlayerActionObject
{

View file

@ -4,7 +4,7 @@ using UnityEngine;
using DG.Tweening;
namespace RhythmHeavenMania.Games.Scripts_KarateMan
namespace HeavenStudio.Games.Scripts_KarateMan
{
// Physics in Rhythm Heaven Mania? nah im just fuckin lazy
public class CookingPotDestroyEffect : MonoBehaviour

View file

@ -2,9 +2,9 @@ using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using RhythmHeavenMania.Util;
using HeavenStudio.Util;
namespace RhythmHeavenMania.Games.Scripts_KarateMan
namespace HeavenStudio.Games.Scripts_KarateMan
{
public class KarateJoe : MonoBehaviour
{

View file

@ -2,9 +2,9 @@ using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using RhythmHeavenMania.Util;
using HeavenStudio.Util;
namespace RhythmHeavenMania.Games
namespace HeavenStudio.Games
{
using Scripts_KarateMan;

View file

@ -2,9 +2,9 @@ using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using RhythmHeavenMania.Util;
using HeavenStudio.Util;
namespace RhythmHeavenMania.Games.Scripts_KarateMan
namespace HeavenStudio.Games.Scripts_KarateMan
{
public class Pot : PlayerActionObject
{

View file

@ -2,7 +2,7 @@ using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace RhythmHeavenMania.Games
namespace HeavenStudio.Games
{
public class Minigame : MonoBehaviour
{

View file

@ -5,9 +5,9 @@ using UnityEngine;
using System;
using Starpelly;
using RhythmHeavenMania.Util;
using HeavenStudio.Util;
namespace RhythmHeavenMania.Games
namespace HeavenStudio.Games
{
using Scripts_MrUpbeat;

View file

@ -4,9 +4,9 @@ using UnityEngine;
using System;
using Starpelly;
using RhythmHeavenMania.Util;
using HeavenStudio.Util;
namespace RhythmHeavenMania.Games.Scripts_MrUpbeat
namespace HeavenStudio.Games.Scripts_MrUpbeat
{
public class UpbeatMan : MonoBehaviour
{

View file

@ -4,9 +4,9 @@ using UnityEngine;
using System;
using Starpelly;
using RhythmHeavenMania.Util;
using HeavenStudio.Util;
namespace RhythmHeavenMania.Games.Scripts_MrUpbeat
namespace HeavenStudio.Games.Scripts_MrUpbeat
{
public class UpbeatStep : PlayerActionObject
{

View file

@ -2,9 +2,9 @@ using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using RhythmHeavenMania.Editor.Track;
using HeavenStudio.Editor.Track;
namespace RhythmHeavenMania.Games
namespace HeavenStudio.Games
{
public class PlayerActionObject : MonoBehaviour
{

View file

@ -4,9 +4,9 @@ using UnityEngine;
using DG.Tweening;
using RhythmHeavenMania.Util;
using HeavenStudio.Util;
namespace RhythmHeavenMania.Games.Scripts_RhythmRally
namespace HeavenStudio.Games.Scripts_RhythmRally
{
public class Paddlers : PlayerActionObject
{

View file

@ -4,8 +4,8 @@ using UnityEngine;
using NaughtyBezierCurves;
using DG.Tweening;
using RhythmHeavenMania.Util;
namespace RhythmHeavenMania.Games
using HeavenStudio.Util;
namespace HeavenStudio.Games
{
using Scripts_RhythmRally;

View file

@ -3,7 +3,7 @@ using System.Collections.Generic;
using UnityEngine;
using System;
namespace RhythmHeavenMania.Games.Scripts_RhythmTweezers
namespace HeavenStudio.Games.Scripts_RhythmTweezers
{
public class Hair : PlayerActionObject
{

View file

@ -2,9 +2,9 @@ using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using RhythmHeavenMania.Util;
using HeavenStudio.Util;
namespace RhythmHeavenMania.Games.Scripts_RhythmTweezers
namespace HeavenStudio.Games.Scripts_RhythmTweezers
{
public class LongHair : PlayerActionObject
{

View file

@ -5,9 +5,9 @@ using System;
using Starpelly;
using DG.Tweening;
using RhythmHeavenMania.Util;
using HeavenStudio.Util;
namespace RhythmHeavenMania.Games
namespace HeavenStudio.Games
{
using Scripts_RhythmTweezers;

View file

@ -3,9 +3,9 @@ using System.Collections.Generic;
using UnityEngine;
using System;
using RhythmHeavenMania.Util;
using HeavenStudio.Util;
namespace RhythmHeavenMania.Games.Scripts_RhythmTweezers
namespace HeavenStudio.Games.Scripts_RhythmTweezers
{
public class Tweezers : MonoBehaviour
{

View file

@ -3,9 +3,9 @@ using System.Collections.Generic;
using UnityEngine;
using NaughtyBezierCurves;
using RhythmHeavenMania.Util;
using HeavenStudio.Util;
namespace RhythmHeavenMania.Games.Scripts_SpaceSoccer
namespace HeavenStudio.Games.Scripts_SpaceSoccer
{
public class Ball : MonoBehaviour
{

View file

@ -2,9 +2,9 @@ using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using RhythmHeavenMania.Util;
using HeavenStudio.Util;
namespace RhythmHeavenMania.Games.Scripts_SpaceSoccer
namespace HeavenStudio.Games.Scripts_SpaceSoccer
{
public class Kicker : PlayerActionObject
{

View file

@ -2,9 +2,9 @@ using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using RhythmHeavenMania.Util;
using HeavenStudio.Util;
namespace RhythmHeavenMania.Games
namespace HeavenStudio.Games
{
using Scripts_SpaceSoccer;

View file

@ -2,7 +2,7 @@ using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace RhythmHeavenMania.Games.Scripts_Spaceball
namespace HeavenStudio.Games.Scripts_Spaceball
{
public class Alien : MonoBehaviour
{

View file

@ -2,9 +2,9 @@ using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using RhythmHeavenMania.Util;
using HeavenStudio.Util;
namespace RhythmHeavenMania.Games
namespace HeavenStudio.Games
{
using Scripts_Spaceball;

View file

@ -2,11 +2,11 @@ using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using RhythmHeavenMania.Util;
using HeavenStudio.Util;
using DG.Tweening;
namespace RhythmHeavenMania.Games.Scripts_Spaceball
namespace HeavenStudio.Games.Scripts_Spaceball
{
public class SpaceballBall : PlayerActionObject
{

View file

@ -3,9 +3,9 @@ using System.Collections.Generic;
using UnityEngine;
using DG.Tweening;
using RhythmHeavenMania.Util;
using HeavenStudio.Util;
namespace RhythmHeavenMania.Games.Scripts_Spaceball
namespace HeavenStudio.Games.Scripts_Spaceball
{
public class SpaceballPlayer : MonoBehaviour
{

View file

@ -2,9 +2,9 @@ using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using RhythmHeavenMania.Util;
using HeavenStudio.Util;
namespace RhythmHeavenMania.Games.Scripts_TapTrial
namespace HeavenStudio.Games.Scripts_TapTrial
{
public class Tap : PlayerActionObject
{

View file

@ -2,9 +2,9 @@ using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using RhythmHeavenMania.Util;
using HeavenStudio.Util;
namespace RhythmHeavenMania.Games
namespace HeavenStudio.Games
{
using Scripts_TapTrial;

View file

@ -1,8 +1,8 @@
using UnityEngine;
using RhythmHeavenMania.Util;
using HeavenStudio.Util;
namespace RhythmHeavenMania.Games.Scripts_TapTrial
namespace HeavenStudio.Games.Scripts_TapTrial
{
public class TapTrialPlayer : MonoBehaviour
{

View file

@ -2,7 +2,7 @@ using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace RhythmHeavenMania.Games.Scripts_WizardsWaltz
namespace HeavenStudio.Games.Scripts_WizardsWaltz
{
public class Girl : MonoBehaviour
{

View file

@ -1,10 +1,10 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using RhythmHeavenMania.Util;
using HeavenStudio.Util;
using System;
namespace RhythmHeavenMania.Games.Scripts_WizardsWaltz
namespace HeavenStudio.Games.Scripts_WizardsWaltz
{
public class MagicFX : MonoBehaviour
{

View file

@ -3,7 +3,7 @@ using System.Collections.Generic;
using UnityEngine;
using System;
namespace RhythmHeavenMania.Games.Scripts_WizardsWaltz
namespace HeavenStudio.Games.Scripts_WizardsWaltz
{
public class Plant : PlayerActionObject
{

View file

@ -1,9 +1,9 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using RhythmHeavenMania.Util;
using HeavenStudio.Util;
namespace RhythmHeavenMania.Games.Scripts_WizardsWaltz
namespace HeavenStudio.Games.Scripts_WizardsWaltz
{
public class Wizard : MonoBehaviour
{

View file

@ -5,9 +5,9 @@ using UnityEngine;
using System;
using Starpelly;
using RhythmHeavenMania.Util;
using HeavenStudio.Util;
namespace RhythmHeavenMania.Games
namespace HeavenStudio.Games
{
using Scripts_WizardsWaltz;

View file

@ -5,7 +5,7 @@ using UnityEngine.SceneManagement;
using UnityEngine.UI;
using DG.Tweening;
namespace RhythmHeavenMania
namespace HeavenStudio
{
public class GlobalGameManager : MonoBehaviour
{

View file

@ -2,9 +2,9 @@ using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using RhythmHeavenMania.Util;
using HeavenStudio.Util;
namespace RhythmHeavenMania
namespace HeavenStudio
{
public class GoForAPerfect : MonoBehaviour
{

View file

@ -3,7 +3,7 @@ using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Audio;
namespace RhythmHeavenMania
namespace HeavenStudio
{
public class Initializer : MonoBehaviour
{
@ -56,7 +56,7 @@ namespace RhythmHeavenMania
if (editor)
{
this.GetComponent<RhythmHeavenMania.Editor.Editor>().Init();
this.GetComponent<HeavenStudio.Editor.Editor>().Init();
}
else
{

View file

@ -3,7 +3,7 @@ using UnityEngine;
using TMPro;
using System.Linq;
namespace RhythmHeavenMania.Editor
namespace HeavenStudio.Editor
{
public class BPMText : MonoBehaviour
{

View file

@ -5,7 +5,7 @@ using UnityEngine.UI;
using TMPro;
namespace RhythmHeavenMania.Editor
namespace HeavenStudio.Editor
{
public class BeatGrid : MonoBehaviour
{

View file

@ -5,9 +5,9 @@ using UnityEngine.UI;
using Starpelly;
using RhythmHeavenMania.Editor.Track;
using HeavenStudio.Editor.Track;
namespace RhythmHeavenMania.Editor
namespace HeavenStudio.Editor
{
public class BoxSelection : MonoBehaviour
{

View file

@ -3,9 +3,9 @@ using System.Collections.Generic;
using System.Linq;
using UnityEngine;
using RhythmHeavenMania.Editor.Track;
using HeavenStudio.Editor.Track;
namespace RhythmHeavenMania.Editor.Commands
namespace HeavenStudio.Editor.Commands
{
public class Selection : IAction
{

View file

@ -2,9 +2,9 @@ using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using RhythmHeavenMania.Editor.Commands;
using HeavenStudio.Editor.Commands;
namespace RhythmHeavenMania.Editor
namespace HeavenStudio.Editor
{
public class CommandManager : MonoBehaviour
{

View file

@ -2,7 +2,7 @@ using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace RhythmHeavenMania.Editor.Commands
namespace HeavenStudio.Editor.Commands
{
public interface IAction
{

View file

@ -2,7 +2,7 @@ using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using RhythmHeavenMania.Editor.Commands;
using HeavenStudio.Editor.Commands;
public class TestCommand : IAction
{

View file

@ -3,7 +3,7 @@ using System.Collections.Generic;
using UnityEngine;
using UnityEngine.EventSystems;
namespace RhythmHeavenMania.Editor
namespace HeavenStudio.Editor
{
public class DisableSelectOnHover : MonoBehaviour
{

View file

@ -13,13 +13,13 @@ using TMPro;
using Starpelly;
using SFB;
using RhythmHeavenMania.Editor.Track;
using RhythmHeavenMania.Util;
using HeavenStudio.Editor.Track;
using HeavenStudio.Util;
using System.IO.Compression;
using System.Text;
namespace RhythmHeavenMania.Editor
namespace HeavenStudio.Editor
{
public class Editor : MonoBehaviour
{

View file

@ -8,9 +8,9 @@ using TMPro;
using Starpelly;
using RhythmHeavenMania.Editor.Track;
using HeavenStudio.Editor.Track;
namespace RhythmHeavenMania.Editor
namespace HeavenStudio.Editor
{
public class EditorTheme : MonoBehaviour
{

View file

@ -2,9 +2,9 @@ using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using RhythmHeavenMania.Editor.Track;
using HeavenStudio.Editor.Track;
namespace RhythmHeavenMania.Editor
namespace HeavenStudio.Editor
{
public class EventParameterManager : MonoBehaviour
{

View file

@ -7,9 +7,9 @@ using System;
using TMPro;
using Starpelly;
using RhythmHeavenMania.Util;
using HeavenStudio.Util;
namespace RhythmHeavenMania.Editor
namespace HeavenStudio.Editor
{
public class EventPropertyPrefab : MonoBehaviour
{

View file

@ -7,9 +7,9 @@ using TMPro;
using DG.Tweening;
using Starpelly;
using RhythmHeavenMania.Editor.Track;
using HeavenStudio.Editor.Track;
namespace RhythmHeavenMania.Editor
namespace HeavenStudio.Editor
{
public class GridGameSelector : MonoBehaviour
{

View file

@ -1,7 +1,7 @@
using UnityEngine;
using UnityEngine.UI;
namespace RhythmHeavenMania.Editor
namespace HeavenStudio.Editor
{
public class GridGameSelectorGame : MonoBehaviour
{

View file

@ -3,9 +3,9 @@ using System.Collections.Generic;
using System.Linq;
using UnityEngine;
using RhythmHeavenMania.Editor.Track;
using HeavenStudio.Editor.Track;
namespace RhythmHeavenMania.Editor
namespace HeavenStudio.Editor
{
public class Selections : MonoBehaviour
{

View file

@ -3,7 +3,7 @@ using System.Collections.Generic;
using UnityEngine;
using UnityEngine.EventSystems;
namespace RhythmHeavenMania.Editor
namespace HeavenStudio.Editor
{
public class Selector : MonoBehaviour
{

View file

@ -2,7 +2,7 @@ using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace RhythmHeavenMania.Editor
namespace HeavenStudio.Editor
{
public class TempoFinder : MonoBehaviour
{

View file

@ -4,7 +4,7 @@ using UnityEngine;
using UnityEngine.UI;
using UnityEngine.EventSystems;
namespace RhythmHeavenMania.Editor
namespace HeavenStudio.Editor
{
public class TempoFinderButton : Button, IPointerDownHandler
{

Some files were not shown because too many files have changed in this diff Show more