internal static ILiveRunner CreateLiveRunner(EngineController controller, string geometryFactoryFileName)
 {
     var configuration = new LiveRunner.Configuration();
     configuration.PassThroughConfiguration.Add(Autodesk.DesignScript.Interfaces.ConfigurationKeys.GeometryFactory, geometryFactoryFileName);
     return new LiveRunner(configuration);
 }
Exemple #2
0
 internal static ILiveRunner CreateLiveRunner(EngineController controller)
 {
     LiveRunner.Configuration configuration = new LiveRunner.Configuration();
     return new LiveRunner(configuration);
 }