Here are the examples of the csharp api class PMXLoaderScript.ConvertDisplayFrame(PMDFormat, int) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.
1 Example
0
1. Example
View licenseprivate static PMXFormat.DisplayFrameList ConvertDisplayFrameList(PMDFormat pmd) { PMXFormat.DisplayFrameList result = new PMXFormat.DisplayFrameList(); result.display_frame = new PMXFormat.DisplayFrame[pmd.bone_display_list.bone_disp.Length]; for (int i = 0, i_max = result.display_frame.Length; i < i_max; ++i) { result.display_frame[i] = ConvertDisplayFrame(pmd, i); } return result; }