u s i n g   U n i t y E n g i n e ; 
 u s i n g   U n i t y E d i t o r ; 
 u s i n g   U t a g e ; 
 u s i n g   S y s t e m ; 
 u s i n g   S y s t e m . I O ; 
 u s i n g   S y s t e m . C o l l e c t i o n s ; 
 
 p u b l i c   c l a s s   L i v e 2 D I m p o r t e r   :   A s s e t P o s t p r o c e s s o r   
 { 
 	 s t a t i c   v o i d   O n P o s t p r o c e s s A l l A s s e t s   
 	 	 ( s t r i n g [ ]   i m p o r t e d A s s e t s ,   s t r i n g [ ]   d e l e t e d A s s e t s ,   
 	 	   s t r i n g [ ]   m o v e d A s s e t s ,   s t r i n g [ ]   m o v e d F r o m P a t h ) 
 	 { 
 	 	 f o r e a c h ( s t r i n g   a s s e t   i n   i m p o r t e d A s s e t s ) 
 	 	 { 
 	 	 	 i f   ( a s s e t . E n d s W i t h ( " . m o c " )   | |   a s s e t . E n d s W i t h ( " . m t n " ) ) 
 	 	 	 { 
 	 	 	 	 C o p y B y t e F i l e ( a s s e t ) ; 
 	 	 	 } 
 / * 	 	 	 i f   ( a s s e t . E n d s W i t h ( " . m o c . b y t e s " )   | |   a s s e t . E n d s W i t h ( " . m t n . b y t e s " ) ) 
 	 	 	 { 
 	 	 	 	 C o p y N o t B y t e F i l e ( a s s e t ) ; 
 	 	 	 } * / 
 	 	 } 
 	 	 A s s e t D a t a b a s e . R e f r e s h ( ) ; 
 	 } 
 
 	 / / 0002 D n0000000. b y t e s 0d0Q0_00n0h0W0f0000Y00`0Q0k0Y00
 	 / / CQ0000L0kc0f0D0j0D0h000000j0i0g0xW0e00D0_00
 	 p r i v a t e   s t a t i c   v o i d   C o p y B y t e F i l e ( s t r i n g   f i l e P a t h ) 
 	 { 
 	 	 s t r i n g   n e w F i l e P a t h   =   f i l e P a t h   +   " . b y t e s " ; 
 	 	 / / 0000000W0f0
NfM0
 	 	 F i l e . C o p y ( f i l e P a t h ,   n e w F i l e P a t h ,   t r u e ) ; 
 	 } 
 
 	 / / L i v e 2 D n000000. b y t e s o0Z0W0_00n00000W0f0_CQY00
 	 p r i v a t e   s t a t i c   v o i d   C o p y N o t B y t e F i l e ( s t r i n g   f i l e P a t h ) 
 	 { 
 	 	 s t r i n g   n e w F i l e P a t h   =   f i l e P a t h . S u b s t r i n g ( 0 ,   f i l e P a t h . L e n g t h   -   " . b y t e s " . L e n g t h   ) ; 
 	 	 / / 0000000W0f0
NfM0
 	 	 F i l e . C o p y ( f i l e P a t h ,   n e w F i l e P a t h ,   t r u e ) ; 
 	 } 
 } 
 