This commit is contained in:
SoulliesOfficial
2025-07-10 08:42:30 -04:00
parent 150ef744e8
commit e483cfe502
286 changed files with 31518 additions and 947 deletions

View File

@@ -0,0 +1,82 @@
using System;
using System.Collections;
using System.Collections.Generic;
using Ichni.RhythmGame.Beatmap;
using Ichni.RhythmGame.ThemeBundles.Basic.Beatmap;
using UnityEngine;
namespace Ichni.RhythmGame.ThemeBundles.Basic
{
public partial class DirectionalLight : EnvironmentObject
{
[SerializeField]
private Light directionalLight;
public float intensity;
public bool castShadows;
public static DirectionalLight GenerateElement(string elementName, Guid id, List<string> tags,
bool isFirstGenerated, GameElement parentElement, string themeBundleName, string objectName,
bool isStatic, float intensity, bool castShadows)
{
DirectionalLight dirLight = EnvironmentObject.GenerateElement(elementName, id, tags,
isFirstGenerated, themeBundleName, objectName, parentElement, isStatic).GetComponent<DirectionalLight>();
dirLight.intensity = intensity;
dirLight.castShadows = castShadows;
return dirLight;
}
public override void Refresh()
{
base.Refresh();
directionalLight.color = colorSubmodule.currentBaseColor;
directionalLight.intensity = intensity;
directionalLight.shadows = castShadows ? LightShadows.Soft : LightShadows.None;
}
}
public partial class DirectionalLight
{
public override void SaveBM()
{
matchedBM = new DirectionalLight_BM(elementName, elementGuid, tags, parentElement.matchedBM as GameElement_BM,
themeBundleName, objectName, isStatic, intensity, castShadows);
}
}
namespace Beatmap
{
public class DirectionalLight_BM : EnvironmentObject_BM
{
public float intensity;
public bool castShadows;
public DirectionalLight_BM()
{
}
public DirectionalLight_BM(string elementName, Guid id, List<string> tags,
GameElement_BM parent, string themeBundleName, string objectName, bool isStatic,
float intensity, bool castShadows) :
base(elementName, id, tags, parent, themeBundleName, objectName, isStatic)
{
this.intensity = intensity;
this.castShadows = castShadows;
}
public override void ExecuteBM()
{
matchedElement = DirectionalLight.GenerateElement(elementName, elementGuid, tags, false,
GetElement(attachedElementGuid), themeBundleName, objectName, isStatic, intensity, castShadows);
}
public override GameElement DuplicateBM(GameElement parent)
{
return DirectionalLight.GenerateElement(elementName, Guid.NewGuid(), tags, false,
parent, themeBundleName, objectName, isStatic, intensity, castShadows);
}
}
}
}