Added in ACE3 v3.15.0

Viewports Framework

1. Config Values

Reference ace_viewports_fnc_getViewports

class myVehicle {
    class ace_viewports {
        class Template {
            // type [STRING] - Optional
            type = "";
             // camLocation [ARRAY or STRING] - Required
            camLocation = "memoryPointP1";
            camLocation[] = {1,2,3}; // model offset
            // camAttach [ARRAY or NUMBER] - Required
            camAttach[] = {0,0}; // Turret path
            camAttach = 55; // Direction in degrees
            // screenLocation [ARRAY or STRING] - Optional
            screenLocation = "memoryPointP1x";
            screenLocation[] = {1,2,3};
            // maxDistance [NUMBER] - Optional
            maxDistance = 0.75;
            // compartments [ARRAY] - Optional
            compartments[]={"Compartment1"};
            // roles [ARRAY] - Optional
            roles[]={"cargo"};
        };
        class periscope_0 {
            camLocation[] = {0.987915, -0.324707, -0.0673385};
            camAttach = 70;
            roles[]={"cargo"};
        };
        class commandersView {
            screenLocation[] = {0.729126,-0.191597,-0.573349};
            maxDistance = 5;
            type = "screen";
            camLocation[] = {0,0,0.05};
            camAttach[] = {0,0};
            roles[]={"cargo"};
        };
    };
};