# Texture Video Set Time (Advanced)

Grammar — TextureVideoSetTime slotName.slotComponent time
FlagsNative | Function

Constructs and returns a TextureVideoSetTime actor message. Sets the play position (in seconds) of the video texture in the specified texture slot. Works on actors with a model.

# Arguments

  • string — Slot Name
  • int — Slot Component
  • fixed — Time

Returns — string<actormsg>

native string MakeMsgTextureVideoSetTime(
	string slotName,
	int slotComponent,
	fixed time,
);

Category: Actor / Message Constructors

# Examples

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

    // Automatic Variable Declarations
    // Implementation
    return MakeMsgTextureVideoSetTime(TextureGetSlotName(lp_texture), TextureGetSlotComponent(lp_texture), lp_time);
}

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

    // Automatic Variable Declarations
    // Implementation
    return MakeMsgTextureVideoSetTime(TextureGetSlotName(lp_texture), TextureGetSlotComponent(lp_texture), lp_time);
}