Forum rules - please read before posting.

is there a bug about ActionMovie CreateNew_Stop in version v1.78.0

edited April 23 in Technical Q&A

public static ActionMovie CreateNew_Stop (VideoPlayer videoPlayer, bool pauseOnly = false)
{
ActionMovie newAction = CreateNew ();
newAction.movieClipType = MovieClipType.VideoPlayer;
newAction.movieMaterialMethod = (pauseOnly) ? MovieMaterialMethod.PauseMovie : MovieMaterialMethod.StopMovie;
return newAction;
}

not set the newAction's videoplayer , maybe there is a bug?

Comments

  • Yes, indeed - thanks for pointint it out.

    You can fix it by inserting the following - I'll do the same as part of the next update:

    newAction.videoPlayer = videoPlayer;
    
Sign In or Register to comment.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Welcome to the official forum for Adventure Creator.