-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathReplaceFile.cs
70 lines (65 loc) · 3.12 KB
/
ReplaceFile.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
// Created By Amir Safari , MadMaqz Game Developing team
// Contact : [email protected]
public class ReplaceFile : MonoBehaviour
{
public Material[] ModelMaterials;
void Start()
{
}
void Update()
{
}
public void GetInfo(){
GetComponent<InfoHolder>().Pos = transform.position;
GetComponent<InfoHolder>().quat = transform.rotation;
GetComponent<InfoHolder>().Scale = transform.localScale;
int b=0;
if( GetComponent<InfoHolder>().ChildDepth ==0){
for(int i=0; i<transform.childCount;i++){
for(int a =0 ; a< transform.GetChild(i).childCount;a++){
b++;
GetComponent<InfoHolder>().Materials[b-1] = transform.GetChild(i).transform.GetChild(a).GetComponent<Renderer>().sharedMaterial;
}
}
}else if ( GetComponent<InfoHolder>().ChildDepth ==1){
for(int i=0; i<transform.GetChild(0).childCount;i++){
for(int a =0 ; a< transform.GetChild(0).GetChild(i).childCount;a++){
b++;
GetComponent<InfoHolder>().Materials[b-1] = transform.GetChild(0).GetChild(i).transform.GetChild(a).GetComponent<Renderer>().sharedMaterial;
}
}
}else if( GetComponent<InfoHolder>().ChildDepth ==2){
for(int i=0; i<transform.GetChild(0).GetChild(0).childCount;i++){
for(int a =0 ; a< transform.GetChild(0).GetChild(0).GetChild(i).childCount;a++){
b++;
GetComponent<InfoHolder>().Materials[b-1] = transform.GetChild(0).GetChild(0).GetChild(i).transform.GetChild(a).GetComponent<Renderer>().sharedMaterial;
}
}
}else if( GetComponent<InfoHolder>().ChildDepth ==3){
for(int i=0; i<transform.GetChild(0).GetChild(0).GetChild(0).childCount;i++){
for(int a =0 ; a< transform.GetChild(0).GetChild(0).GetChild(0).GetChild(i).childCount;a++){
b++;
GetComponent<InfoHolder>().Materials[b-1] = transform.GetChild(0).GetChild(0).GetChild(0).GetChild(i).transform.GetChild(a).GetComponent<Renderer>().sharedMaterial;
}
}
}
else if( GetComponent<InfoHolder>().ChildDepth ==4){
for(int i=0; i<transform.GetChild(0).GetChild(0).GetChild(0).GetChild(0).childCount;i++){
for(int a =0 ; a< transform.GetChild(0).GetChild(0).GetChild(0).GetChild(0).GetChild(i).childCount;a++){
b++;
GetComponent<InfoHolder>().Materials[b-1] = transform.GetChild(0).GetChild(0).GetChild(0).GetChild(0).GetChild(i).transform.GetChild(a).GetComponent<Renderer>().sharedMaterial;
}
}
}
GetComponent<InfoHolder>().InstanceNew();
}
public void SetMats(){
GetComponent<InfoHolder>().SetMats();
}
public void DeleteObj(){
GetComponent<InfoHolder>().DeleteObj();
}
}