mirror of
https://github.com/Facepunch/sbox-public.git
synced 2026-08-01 08:18:20 -04:00
https://files.facepunch.com/1/dda4692a-f450-4732-8810-208a33ab350b-sbox.2026.07.14.09.23.58.mp4
15 lines
318 B
C#
15 lines
318 B
C#
namespace Sandbox;
|
|
|
|
public partial class SoundFile
|
|
{
|
|
/// <summary>
|
|
/// The sound's file data has been loaded (or reloaded) - read what we want
|
|
/// out of the compiled file.
|
|
/// </summary>
|
|
internal override void OnLoaded( ResourceLoadContext context )
|
|
{
|
|
ReadVisemes( context );
|
|
ReadSubtitles( context );
|
|
}
|
|
}
|