From 252b7eaa07ff32795fdd37657379df6ea9f9111d Mon Sep 17 00:00:00 2001 From: Daisuke Date: Wed, 29 Sep 2021 16:25:15 +1000 Subject: [PATCH] fracFrameCntr access property assigned getAccess, based on the discussion https://github.com/klabhub/neurostim/issues/179 --- +neurostim/+stimuli/movie.m | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/+neurostim/+stimuli/movie.m b/+neurostim/+stimuli/movie.m index 6342119b..a9d030c8 100644 --- a/+neurostim/+stimuli/movie.m +++ b/+neurostim/+stimuli/movie.m @@ -37,10 +37,12 @@ % Each frame will be associated with a texture tex = []; % Vector fo texture pointers rect =[]; % Rect to apply the texture - fracFrameCntr; % Current fractional frame cntr. currentlyLoadedFile = ''; % Full path to currently loaded file. end + properties (GetAccess = public, SetAccess = private) + fracFrameCntr; % Current fractional frame cntr. + end methods (Access = public) function o = movie(c,name)