# Texture Video Set Paused (Advanced)

Grammar — TextureVideoSetPaused slotName.slotComponent pauseState
FlagsNative | Function

Constructs and returns a TextureVideoSetPaused actor message. Sets the pause state of the video texture in the specified texture slot. Works on actors with a model.

# Arguments

  • string — Slot Name
  • int — Slot Component
  • bool — Pause State

Returns — string<actormsg>

native string MakeMsgTextureVideoSetPaused(
	string slotName,
	int slotComponent,
	bool isPaused,
);

Category: Actor / Message Constructors

# Examples

mods/core.sc2modbase.sc2data/TriggerLibs/NativeLib.galaxy:1093

    // Automatic Variable Declarations
    // Implementation
    return MakeMsgTextureVideoSetPaused(TextureGetSlotName(lp_texture), TextureGetSlotComponent(lp_texture), lp_pauseState);
}

mods/core.stormmodbase.stormdata/TriggerLibs/NativeLib.galaxy:988

    // Automatic Variable Declarations
    // Implementation
    return MakeMsgTextureVideoSetPaused(TextureGetSlotName(lp_texture), TextureGetSlotComponent(lp_texture), lp_pauseState);
}