initial upload

This commit is contained in:
tom.hempel
2025-09-18 15:00:04 +02:00
commit 38c88769de
740 changed files with 33820 additions and 0 deletions

View File

@ -0,0 +1,25 @@
// script to delete light after explosition
using UnityEngine;
using System.Collections;
public class light_control : MonoBehaviour {
private float timeout = 0.5f;
public Light Light;
void Start () {
}
void Update () {
if(timeout>0.1f)
{
timeout-=Time.deltaTime;
Light.range=15;
}
else
{
Light.range=0;
}
}
}