How to keep a reference of other DataTable in a DataTable? I can reference a texture type stored in the DataTable, but I could not reference a DataTable type, because no DataTable was found in the structure defination.
Struct
UserDefinedStruct’/Game/table/LevelStageStruct.LevelStageStruct’
LevelName…String
LevelScript…?(Should be DataTable)
Image…Texture
Cvs table:
Name,LevelName,Level,Image
Level1,text1,DataTable’/Game/Script/Level1.Level1’,Texture2D’/Game/Img01.Img01’
Level2,text2,DataTable’/Game/Script/Level2.Level2’,Texture2D’/Game/Img02.Img02’
Every thing is fine,except I can’t get reference to the DataTable type “Level”.
How can I do this?