Combined recordings
Combined recordings allow you to play back multiple recordings at once. This is useful when you want your recordings to be more detailed but you just can't recording everything at once. For example, you might have one recording that contains everything about the camera and another one that has everything relating to GLights.
To create a combined recording, open the RecordingNames
script. In that script, there is a small comment explaining what it's for and an example combined recording that looks like this:
--{
-- Name = "🍪 Test Recording", --// What should appear on the panel
-- Recordings = { "test123", "anotherrecording" } --// Names of recordings
--};
Copy that piece of code and paste it directly below it, then remove the --
from the start of each line that you just pasted, so it looks like this:
{
Name = "🍪 Test Recording", --// What should appear on the panel
Recordings = { "test123", "anotherrecording" } --// Names of recordings
};
Change 🍪 Test Recording
to the name that should appear on the button on the panel and add recording names in place of test123
and anotherrecording
. You can add as many recordings as you want, the same way you added players to the whitelist when setting up StacyPilot.
For example, if you want the button to be named Interval
and to start recordings interval1
, interval2
and interval_cameras
, then the piece of code should look like this:
{
Name = "Interval", --// What should appear on the panel
Recordings = { "interval1", "interval2", "interval_cameras" } --// Names of recordings
};
Click here if you want to see an example of how the full script could look like with a couple combined recordings
return {
--// If you want to add more recordings, just copy and paste the example below
--// Make sure to uncomment it as well (remove the -- at the beginning of each line)
--{
-- Name = "🍪 Test Recording", --// What should appear on the panel
-- Recordings = { "test123", "anotherrecording" } --// Names of recordings
--};
{
Name = "Interval", --// What should appear on the panel
Recordings = { "interval1", "interval2", "interval_cameras" } --// Names of recordings
};
{
Name = "Opening", --// What should appear on the panel
Recordings = { "opening", "OpeningLights" } --// Names of recordings
};
{
Name = "Semi Interval", --// What should appear on the panel
Recordings = { "sfInterval", "sfInterval2", "sfInterval2" } --// Names of recordings
};
}