1
0
mirror of synced 2024-12-03 18:27:16 +01:00
WACVR/Assets/Script/Essential/PrefabLightmapTransfer.cs

24 lines
512 B
C#
Raw Normal View History

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
[RequireComponent(typeof(PrefabLightmapData))]
public class PrefabLightmapTransfer : MonoBehaviour
{
public GameObject targetPrefabParent;
private PrefabLightmapData sourceLightmapData;
private PrefabLightmapData lightmapData;
void Awake()
{
sourceLightmapData = GetComponent<PrefabLightmapData>();
}
// Update is called once per frame
void Update()
{
}
}