Files
Oğuzhan Koral d145ce52f7 Sketchup DUI2-DUI3 side by side (#350)
* New sqlite3 libraries for new namespace

* Rename top level module to SpeckleConnector3

* Register extension as v3

* Add new sqlite3 libraries for mac

* Update bundle files for hybrid build mac/intel

* Rename speckle_connector_loader for v3

* Rename file and folder

* Rename loader
2024-07-31 19:26:38 +03:00
..

Tools

This folder stores the external tools and helper scripts to make easier life of the developer, they are not the part of the main functionality of the Speckle.

Tools and scripts inside the folder will be loaded with sketchup_connector_loader.rb file. In order to load your own .rb files please add this file names into list in the loader.

...
  
files = %w[speckle_connector jf_RubyPanel su_attributes <put-your-file-here>]
# This line placed before loading started. 

files.each do |ruby_file|
  puts "Loading #{ruby_file}"
  begin
    require ruby_file
  rescue LoadError
    puts "Could not load #{ruby_file}"
  end
end

Track load status of your tools and scripts on the ruby console when SketchUp UI initializing.