774d18a99d
made most of the game Moddable. There is an in editor tool to make the mods and set them all up, and im making an external tool that will show your mods, lets you edit any information and it will pack it up and upload it. currently working on the uploading. Next I will make the game able to download and install. - Fuck Nexus.
28 lines
667 B
C#
28 lines
667 B
C#
using System.Security.AccessControl;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
[System.Serializable]
|
|
[CreateAssetMenu(fileName="Lighting Preset", menuName="Scriptables/Lighting Preset", order = 1)]
|
|
public class SunLightPreset : ScriptableObject
|
|
{
|
|
public Gradient AmbientColor;
|
|
public Gradient DirectionalColor;
|
|
public Gradient FogColor;
|
|
public Gradient StarsVisability;
|
|
public Gradient SunIntensity;
|
|
public Gradient WorldBrightness;
|
|
// Start is called before the first frame update
|
|
void Start()
|
|
{
|
|
|
|
}
|
|
|
|
// Update is called once per frame
|
|
void Update()
|
|
{
|
|
|
|
}
|
|
}
|