Uncategorized APIClass ObjectPass ClassOn this pagePass Class Description: A class for creating Pass objects. __call Type: Metamethod. Description: A metamethod that allows you to create a new Pass object. Signature: metamethod __call: function(self: PassClass, vertShader: string, fragShader: string): Pass Parameters: ParameterTypeDescriptionvertShaderstringThe vertex shader in binary form file string.fragShaderstringThe fragment shader file string.A shader file string must be one of the formats: "builtin:" + theBuiltinShaderName "Shader/compiled_shader_file.bin" Returns: Return TypeDescriptionPassA new Pass object.