// Initialize function
    public void Start()
    {
        platformSectionList        = new InterpolatedValueList(sectionList.hasLoop, sectionList.loopBackToIndex);
        platformSectionList.values = sectionList.values;
        platformSectionList.Init();

        sceneSectionList        = new InterpolatedValueList(sectionList.hasLoop, sectionList.loopBackToIndex);
        sceneSectionList.values = sectionList.values;
        sceneSectionList.Init();
    }