<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Play pause animation with a single variant (Setting a single hotkey) usign python in VRED Forum</title>
    <link>https://forums.autodesk.com/t5/vred-forum/play-pause-animation-with-a-single-variant-setting-a-single/m-p/11512157#M1825</link>
    <description>&lt;P&gt;Thank you Chris! &lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt; Now it works! One last question. I tried a variant set to stop the animation. It could be useful for me.&lt;/P&gt;&lt;P&gt;As you can see in the video, when I press play and pause it works properly, but if I try to stop the animation (reset), play doesn't work. I have to run again the script.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a way to avoid running again the script after stopping the animation?&lt;/P&gt;</description>
    <pubDate>Thu, 27 Oct 2022 09:15:53 GMT</pubDate>
    <dc:creator>fabiodimperio</dc:creator>
    <dc:date>2022-10-27T09:15:53Z</dc:date>
    <item>
      <title>Play pause animation with a single variant (Setting a single hotkey) usign python</title>
      <link>https://forums.autodesk.com/t5/vred-forum/play-pause-animation-with-a-single-variant-setting-a-single/m-p/11506371#M1809</link>
      <description>&lt;P&gt;Hi everybody!&lt;/P&gt;&lt;P&gt;I tried the script in "Script Editor":&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;isPlaying = False&lt;/P&gt;&lt;P&gt;isPausing = False&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;def myPlayToggle():&lt;/P&gt;&lt;P&gt;global isPlaying&lt;/P&gt;&lt;P&gt;global isPausing&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;if not isPlaying:&lt;/P&gt;&lt;P&gt;playCAnimation("Insieme")&lt;/P&gt;&lt;P&gt;isPlaying = True&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;else:&lt;/P&gt;&lt;P&gt;isPausing = not isPausing&lt;/P&gt;&lt;P&gt;pauseCAnimation("Insieme", isPausing)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Once I do double click on the Variant is not running.&lt;/P&gt;&lt;P&gt;And the promp write the message:&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;File "&amp;lt;string&amp;gt;", line 1, in &amp;lt;module&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;NameError: name 'myPlayToggle' is not defined&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Can someone help me?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I attach the sample file.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thank you&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="fabiodimperio_0-1666691843194.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1131705iAFA939ABF86809D9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="fabiodimperio_0-1666691843194.png" alt="fabiodimperio_0-1666691843194.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;</description>
      <pubDate>Tue, 25 Oct 2022 10:27:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vred-forum/play-pause-animation-with-a-single-variant-setting-a-single/m-p/11506371#M1809</guid>
      <dc:creator>fabiodimperio</dc:creator>
      <dc:date>2022-10-25T10:27:24Z</dc:date>
    </item>
    <item>
      <title>Re: Play pause animation with a single variant (Setting a single hotkey) usign python</title>
      <link>https://forums.autodesk.com/t5/vred-forum/play-pause-animation-with-a-single-variant-setting-a-single/m-p/11506900#M1810</link>
      <description>&lt;P&gt;Hi, it looks like your script lost the original indentations from the example.&lt;/P&gt;&lt;P&gt;Just add the indentations back and it seems to work.&lt;/P&gt;&lt;LI-CODE lang="python"&gt;isPlaying = False
isPausing = False

def myPlayToggle():
    global isPlaying
    global isPausing

    if not isPlaying:
        playCAnimation("insieme")
        isPlaying = True

    else:
        isPausing = not isPausing
        pauseCAnimation("insieme", isPausing)&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 25 Oct 2022 13:25:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vred-forum/play-pause-animation-with-a-single-variant-setting-a-single/m-p/11506900#M1810</guid>
      <dc:creator>__daniel.lincoln__</dc:creator>
      <dc:date>2022-10-25T13:25:49Z</dc:date>
    </item>
    <item>
      <title>Re: Play pause animation with a single variant (Setting a single hotkey) usign python</title>
      <link>https://forums.autodesk.com/t5/vred-forum/play-pause-animation-with-a-single-variant-setting-a-single/m-p/11506961#M1811</link>
      <description>&lt;P&gt;I don't know if I am doing something wrong.. But it is not working yet&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="fabiodimperio_0-1666705436205.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1131802iB324517E0E9BE0A0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="fabiodimperio_0-1666705436205.png" alt="fabiodimperio_0-1666705436205.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Oct 2022 13:49:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vred-forum/play-pause-animation-with-a-single-variant-setting-a-single/m-p/11506961#M1811</guid>
      <dc:creator>fabiodimperio</dc:creator>
      <dc:date>2022-10-25T13:49:10Z</dc:date>
    </item>
    <item>
      <title>Re: Play pause animation with a single variant (Setting a single hotkey) usign python</title>
      <link>https://forums.autodesk.com/t5/vred-forum/play-pause-animation-with-a-single-variant-setting-a-single/m-p/11507012#M1812</link>
      <description>Did you press the 'Run' button in the Script Editor after adding the indentations?</description>
      <pubDate>Tue, 25 Oct 2022 14:03:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vred-forum/play-pause-animation-with-a-single-variant-setting-a-single/m-p/11507012#M1812</guid>
      <dc:creator>__daniel.lincoln__</dc:creator>
      <dc:date>2022-10-25T14:03:30Z</dc:date>
    </item>
    <item>
      <title>Re: Play pause animation with a single variant (Setting a single hotkey) usign python</title>
      <link>https://forums.autodesk.com/t5/vred-forum/play-pause-animation-with-a-single-variant-setting-a-single/m-p/11507361#M1813</link>
      <description>&lt;P&gt;Yes. But nothing happens&lt;/P&gt;</description>
      <pubDate>Tue, 25 Oct 2022 15:42:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vred-forum/play-pause-animation-with-a-single-variant-setting-a-single/m-p/11507361#M1813</guid>
      <dc:creator>fabiodimperio</dc:creator>
      <dc:date>2022-10-25T15:42:13Z</dc:date>
    </item>
    <item>
      <title>Re: Play pause animation with a single variant (Setting a single hotkey) usign python</title>
      <link>https://forums.autodesk.com/t5/vred-forum/play-pause-animation-with-a-single-variant-setting-a-single/m-p/11507402#M1814</link>
      <description>&lt;P&gt;It may work better after restarting VRED.&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="example.gif" style="width: 800px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1131905i76FFC5A18A32F35B/image-size/large?v=v2&amp;amp;px=999" role="button" title="example.gif" alt="example.gif" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Oct 2022 15:54:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vred-forum/play-pause-animation-with-a-single-variant-setting-a-single/m-p/11507402#M1814</guid>
      <dc:creator>__daniel.lincoln__</dc:creator>
      <dc:date>2022-10-25T15:54:31Z</dc:date>
    </item>
    <item>
      <title>Re: Play pause animation with a single variant (Setting a single hotkey) usign python</title>
      <link>https://forums.autodesk.com/t5/vred-forum/play-pause-animation-with-a-single-variant-setting-a-single/m-p/11507567#M1815</link>
      <description>&lt;P&gt;Maybe is the vred version. I am using 2022.2. Do you think should be this? I tried to restart vred. Sometimes work. most of the times doesn't. &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Oct 2022 16:48:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vred-forum/play-pause-animation-with-a-single-variant-setting-a-single/m-p/11507567#M1815</guid>
      <dc:creator>fabiodimperio</dc:creator>
      <dc:date>2022-10-25T16:48:27Z</dc:date>
    </item>
    <item>
      <title>Re: Play pause animation with a single variant (Setting a single hotkey) usign python</title>
      <link>https://forums.autodesk.com/t5/vred-forum/play-pause-animation-with-a-single-variant-setting-a-single/m-p/11507616#M1816</link>
      <description>It is working for me in 2022.2. Are you clicking in the render window to give it focus and then pressing the Hotkey?</description>
      <pubDate>Tue, 25 Oct 2022 17:14:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vred-forum/play-pause-animation-with-a-single-variant-setting-a-single/m-p/11507616#M1816</guid>
      <dc:creator>__daniel.lincoln__</dc:creator>
      <dc:date>2022-10-25T17:14:31Z</dc:date>
    </item>
    <item>
      <title>Re: Play pause animation with a single variant (Setting a single hotkey) usign python</title>
      <link>https://forums.autodesk.com/t5/vred-forum/play-pause-animation-with-a-single-variant-setting-a-single/m-p/11507812#M1817</link>
      <description>&lt;P&gt;Hi Fabio, do you still have error, red lines, in the terminal after pushing the Run button on the script editor or after executing the variatset?&lt;/P&gt;</description>
      <pubDate>Tue, 25 Oct 2022 18:33:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vred-forum/play-pause-animation-with-a-single-variant-setting-a-single/m-p/11507812#M1817</guid>
      <dc:creator>Christian_Garimberti</dc:creator>
      <dc:date>2022-10-25T18:33:31Z</dc:date>
    </item>
    <item>
      <title>Re: Play pause animation with a single variant (Setting a single hotkey) usign python</title>
      <link>https://forums.autodesk.com/t5/vred-forum/play-pause-animation-with-a-single-variant-setting-a-single/m-p/11508927#M1818</link>
      <description>&lt;P&gt;Yes I do. But nothing changes&lt;/P&gt;</description>
      <pubDate>Wed, 26 Oct 2022 07:22:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vred-forum/play-pause-animation-with-a-single-variant-setting-a-single/m-p/11508927#M1818</guid>
      <dc:creator>fabiodimperio</dc:creator>
      <dc:date>2022-10-26T07:22:16Z</dc:date>
    </item>
    <item>
      <title>Re: Play pause animation with a single variant (Setting a single hotkey) usign python</title>
      <link>https://forums.autodesk.com/t5/vred-forum/play-pause-animation-with-a-single-variant-setting-a-single/m-p/11508928#M1819</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1273567"&gt;@Christian_Garimberti&lt;/a&gt;&amp;nbsp;No errors yet. But doesn't work&lt;/P&gt;</description>
      <pubDate>Wed, 26 Oct 2022 07:23:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vred-forum/play-pause-animation-with-a-single-variant-setting-a-single/m-p/11508928#M1819</guid>
      <dc:creator>fabiodimperio</dc:creator>
      <dc:date>2022-10-26T07:23:32Z</dc:date>
    </item>
    <item>
      <title>Re: Play pause animation with a single variant (Setting a single hotkey) usign python</title>
      <link>https://forums.autodesk.com/t5/vred-forum/play-pause-animation-with-a-single-variant-setting-a-single/m-p/11508941#M1820</link>
      <description>&lt;P&gt;&lt;div class="lia-vid-container video-embed-center"&gt;&lt;div id="lia-vid-6314372637112w960h540r716" class="lia-video-brightcove-player-container"&gt;&lt;video-js data-video-id="6314372637112" data-account="6057940548001" data-player="default" data-embed="default" class="vjs-fluid" controls="" data-application-id="" style="width: 100%; height: 100%;"&gt;&lt;/video-js&gt;&lt;/div&gt;&lt;script src="https://players.brightcove.net/6057940548001/default_default/index.min.js"&gt;&lt;/script&gt;&lt;script&gt;(function() {  var wrapper = document.getElementById('lia-vid-6314372637112w960h540r716');  var videoEl = wrapper ? wrapper.querySelector('video-js') : null;  if (videoEl) {     if (window.videojs) {       window.videojs(videoEl).ready(function() {         this.on('loadedmetadata', function() {           this.el().querySelectorAll('.vjs-load-progress div[data-start]').forEach(function(bar) {             bar.setAttribute('role', 'presentation');             bar.setAttribute('aria-hidden', 'true');           });         });       });     }  }})();&lt;/script&gt;&lt;a class="video-embed-link" href="https://forums.autodesk.com/t5/video/gallerypage/video-id/6314372637112"&gt;(view in My Videos)&lt;/a&gt;&lt;/div&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Oct 2022 07:34:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vred-forum/play-pause-animation-with-a-single-variant-setting-a-single/m-p/11508941#M1820</guid>
      <dc:creator>fabiodimperio</dc:creator>
      <dc:date>2022-10-26T07:34:01Z</dc:date>
    </item>
    <item>
      <title>Re: Play pause animation with a single variant (Setting a single hotkey) usign python</title>
      <link>https://forums.autodesk.com/t5/vred-forum/play-pause-animation-with-a-single-variant-setting-a-single/m-p/11508948#M1821</link>
      <description>&lt;P&gt;Video Sample&lt;/P&gt;</description>
      <pubDate>Wed, 26 Oct 2022 07:35:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vred-forum/play-pause-animation-with-a-single-variant-setting-a-single/m-p/11508948#M1821</guid>
      <dc:creator>fabiodimperio</dc:creator>
      <dc:date>2022-10-26T07:35:50Z</dc:date>
    </item>
    <item>
      <title>Re: Play pause animation with a single variant (Setting a single hotkey) usign python</title>
      <link>https://forums.autodesk.com/t5/vred-forum/play-pause-animation-with-a-single-variant-setting-a-single/m-p/11509049#M1822</link>
      <description>&lt;P&gt;Could you share again your vpb file so we can test on it?&lt;/P&gt;
&lt;P&gt;Best&lt;/P&gt;
&lt;P&gt;Chris&lt;/P&gt;</description>
      <pubDate>Wed, 26 Oct 2022 08:29:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vred-forum/play-pause-animation-with-a-single-variant-setting-a-single/m-p/11509049#M1822</guid>
      <dc:creator>Christian_Garimberti</dc:creator>
      <dc:date>2022-10-26T08:29:43Z</dc:date>
    </item>
    <item>
      <title>Re: Play pause animation with a single variant (Setting a single hotkey) usign python</title>
      <link>https://forums.autodesk.com/t5/vred-forum/play-pause-animation-with-a-single-variant-setting-a-single/m-p/11509202#M1823</link>
      <description>&lt;P&gt;sure!&lt;/P&gt;</description>
      <pubDate>Wed, 26 Oct 2022 09:41:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vred-forum/play-pause-animation-with-a-single-variant-setting-a-single/m-p/11509202#M1823</guid>
      <dc:creator>fabiodimperio</dc:creator>
      <dc:date>2022-10-26T09:41:04Z</dc:date>
    </item>
    <item>
      <title>Re: Play pause animation with a single variant (Setting a single hotkey) usign python</title>
      <link>https://forums.autodesk.com/t5/vred-forum/play-pause-animation-with-a-single-variant-setting-a-single/m-p/11509530#M1824</link>
      <description>&lt;P&gt;You have to put somewhere a resetCAnimation('ClipName').&lt;/P&gt;
&lt;P&gt;If not, when the animation is ended, it plays no more.&lt;/P&gt;
&lt;P&gt;To be sure all your animation are ready after loading the file, put it on the script editor.&lt;/P&gt;
&lt;P&gt;If you want to reset while using, create a variantset&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="cgarimberti_0-1666785829648.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1132284i4EAC9A2513D250AE/image-size/medium?v=v2&amp;amp;px=400" role="button" title="cgarimberti_0-1666785829648.png" alt="cgarimberti_0-1666785829648.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Best&lt;/P&gt;
&lt;P&gt;Chris&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Oct 2022 12:05:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vred-forum/play-pause-animation-with-a-single-variant-setting-a-single/m-p/11509530#M1824</guid>
      <dc:creator>Christian_Garimberti</dc:creator>
      <dc:date>2022-10-26T12:05:30Z</dc:date>
    </item>
    <item>
      <title>Re: Play pause animation with a single variant (Setting a single hotkey) usign python</title>
      <link>https://forums.autodesk.com/t5/vred-forum/play-pause-animation-with-a-single-variant-setting-a-single/m-p/11512157#M1825</link>
      <description>&lt;P&gt;Thank you Chris! &lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt; Now it works! One last question. I tried a variant set to stop the animation. It could be useful for me.&lt;/P&gt;&lt;P&gt;As you can see in the video, when I press play and pause it works properly, but if I try to stop the animation (reset), play doesn't work. I have to run again the script.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a way to avoid running again the script after stopping the animation?&lt;/P&gt;</description>
      <pubDate>Thu, 27 Oct 2022 09:15:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vred-forum/play-pause-animation-with-a-single-variant-setting-a-single/m-p/11512157#M1825</guid>
      <dc:creator>fabiodimperio</dc:creator>
      <dc:date>2022-10-27T09:15:53Z</dc:date>
    </item>
    <item>
      <title>Re: Play pause animation with a single variant (Setting a single hotkey) usign python</title>
      <link>https://forums.autodesk.com/t5/vred-forum/play-pause-animation-with-a-single-variant-setting-a-single/m-p/11512159#M1826</link>
      <description>&lt;P&gt;&lt;div class="lia-vid-container video-embed-center"&gt;&lt;div id="lia-vid-6314428882112w960h540r911" class="lia-video-brightcove-player-container"&gt;&lt;video-js data-video-id="6314428882112" data-account="6057940548001" data-player="default" data-embed="default" class="vjs-fluid" controls="" data-application-id="" style="width: 100%; height: 100%;"&gt;&lt;/video-js&gt;&lt;/div&gt;&lt;script src="https://players.brightcove.net/6057940548001/default_default/index.min.js"&gt;&lt;/script&gt;&lt;script&gt;(function() {  var wrapper = document.getElementById('lia-vid-6314428882112w960h540r911');  var videoEl = wrapper ? wrapper.querySelector('video-js') : null;  if (videoEl) {     if (window.videojs) {       window.videojs(videoEl).ready(function() {         this.on('loadedmetadata', function() {           this.el().querySelectorAll('.vjs-load-progress div[data-start]').forEach(function(bar) {             bar.setAttribute('role', 'presentation');             bar.setAttribute('aria-hidden', 'true');           });         });       });     }  }})();&lt;/script&gt;&lt;a class="video-embed-link" href="https://forums.autodesk.com/t5/video/gallerypage/video-id/6314428882112"&gt;(view in My Videos)&lt;/a&gt;&lt;/div&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Oct 2022 09:16:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vred-forum/play-pause-animation-with-a-single-variant-setting-a-single/m-p/11512159#M1826</guid>
      <dc:creator>fabiodimperio</dc:creator>
      <dc:date>2022-10-27T09:16:55Z</dc:date>
    </item>
    <item>
      <title>Re: Play pause animation with a single variant (Setting a single hotkey) usign python</title>
      <link>https://forums.autodesk.com/t5/vred-forum/play-pause-animation-with-a-single-variant-setting-a-single/m-p/11512490#M1827</link>
      <description>&lt;P&gt;Stop does not exists, the pause is the same thing and it is enough.&lt;/P&gt;
&lt;P&gt;probably, when you execute the reset, you have to reset also your variables isPlaying and isPausing accordingly.&lt;/P&gt;
&lt;P&gt;So when you write&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;resetCAnimation('ClipName')&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;add also&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;isPlaying = False&lt;/P&gt;
&lt;P&gt;isPausing = False&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best&lt;/P&gt;
&lt;P&gt;Chris&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Oct 2022 11:53:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vred-forum/play-pause-animation-with-a-single-variant-setting-a-single/m-p/11512490#M1827</guid>
      <dc:creator>Christian_Garimberti</dc:creator>
      <dc:date>2022-10-27T11:53:14Z</dc:date>
    </item>
    <item>
      <title>Re: Play pause animation with a single variant (Setting a single hotkey) usign python</title>
      <link>https://forums.autodesk.com/t5/vred-forum/play-pause-animation-with-a-single-variant-setting-a-single/m-p/11512511#M1828</link>
      <description>&lt;P&gt;You mean in the var set or in the script editor?&lt;/P&gt;</description>
      <pubDate>Thu, 27 Oct 2022 12:02:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vred-forum/play-pause-animation-with-a-single-variant-setting-a-single/m-p/11512511#M1828</guid>
      <dc:creator>fabiodimperio</dc:creator>
      <dc:date>2022-10-27T12:02:58Z</dc:date>
    </item>
  </channel>
</rss>

