ℹ️ Licensed Extensions | FredoBatch, ElevationProfile, FredoSketch, LayOps, MatSim and Pic2Shape will require license from Sept 1st More Info
  • [Plugin] Proper Animation V1.08 Beta(Updated 14/11/10)

    246
    0 Votes
    246 Posts
    177k Views
    duanekempD
    Try the link on the first post: https://sketchucation.com/forums/viewtopic.php?f=323&t=10946#p74003 The direct download link still seems to work: https://sketchucation.com/forums/download/file.php?id=58546
  • Random rotate on different axis x,y,z

    5
    0 Votes
    5 Posts
    4 Views
    alexpacio2013A
    @rich o brien said: Pixero's Chaos ?? [image: 7vJo1W1.png] You'll need to run it per axis However, only one axis works at a time. And I couldn't block the move?
  • [Plugin] Hole Punching Tool

    200
    0 Votes
    200 Posts
    220k Views
    J
    I'm just now discovering your plugin, Tig. I'm having an issue when copying a component that is "punched" through a wall. It deletes the faces that it's punching through. I don't know if it's the component or if HPT isn't compatible with SU2023. I've attached a video and the model. Also, I noticed that I can't undo after punching. Is that intended? Thanks in advance for taking a look at it. Spelling correction
  • [Plugin] Material Renamer

    29
    0 Votes
    29 Posts
    29k Views
    designerbursaD
    Plugin name and menu text PLUGIN_NAME = 'Rename Materials by File Name'.freeze Plugin class class RenameMaterials def self.rename # Get the active model model = Sketchup.active_model # Get the file name and remove the extension file_name = File.basename(model.path, ".*") # Get all materials in the model materials = model.materials # Iterate through all materials and assign new names based on the file name materials.each_with_index do |material, index| new_name = "#{file_name}_#{format('%02d', index + 1)}" material.name = new_name end puts "Materials have been successfully renamed based on the file name." end end Menu item that activates the plugin UI.menu('Plugins').add_item(PLUGIN_NAME) { RenameMaterials.rename }
  • [Plugin] Query+

    1
    0 Votes
    1 Posts
    1 Views
    No one has replied
  • [Plug in Inquiry/Request] Material manager/outliner/exporter

    5
    0 Votes
    5 Posts
    10 Views
    ntxdaveN
    Thanks Rich.
  • Error In Licensing RoundCorner Plugin

    2
    0 Votes
    2 Posts
    2 Views
    Rich O BrienR
    Update Sketchucation Tools to 4.3.1 https://sketchucation.com/plugin/696-sketchucationtools
  • [Plugin] Soften/Unsoften

    26
    0 Votes
    26 Posts
    37k Views
    designerbursaD
    jhs powerbar 3d rotate error fix def onLButtonDown(flags, x, y, view) nothing with this click if nothing is selected puts 'nil' if(Sketchup.active_model.selection.length == 0) Keep what's currently selected. Might be temporarily selected because its hovered if there was no selection when tool was selected @hasSelection = true Select point when and draw when clicking first 3 clicks select points and set jaw & pitch. 4th and 5th click are optional and sets roll if @state == 0 # Select anchorpoint #@pAnchor.pick view, x, y if @pAnchor.valid? @state = 1 @status_text = "Grab entity." # first status text defined in reset() Sketchup::set_status_text(@status_text, SB_PROMPT) end elsif @state == 1 # Select startpoint 1 #@pStart1.pick view, x, y, @pAnchor if @pStart1.valid? @state = 2 @status_text = "Pick target to drag entity towards." Sketchup::set_status_text(@status_text, SB_PROMPT) end elsif @state == 2 # Select targetpoint 1 and set yaw and pitch for selection #@pTarget1.pick view, x, y, @pAnchor if @pTarget1.valid? @state = 3 @status_text = "(Optional) Grab entity again." Sketchup::set_status_text(@status_text, SB_PROMPT) self.rotateYawPitch(@pAnchor.position, @pStart1.position, @pTarget1.position) # Set rotated flag so script knows whether to update view or not when leaving tool @rotated = true end elsif @state == 3 # Select startpoint 2 #@pStart2.pick view, x, y, @pAnchor if @pStart2.valid? @state = 4 @status_text = "Pick target to drag entity towards." Sketchup::set_status_text(@status_text, SB_PROMPT) end elsif @state == 4 # Select targetpoint 2 and set roll for selection #@pTarget2.pick view, x, y, @pAnchor if @pTarget2.valid? self.rotateRoll(@pAnchor.position, @pStart2.position, @pTarget2.position, (@pTarget1.position - @pAnchor.position)) self.reset(view) end end end#def
  • Lock Guides?

    12
    0 Votes
    12 Posts
    3k Views
    fredo6F
    @eddiegordo23 said: Select the guides you want to lock the click edit and lock. Unfortunately, Guide Lines and Guide Points cannot be locked in the user interface and not even with the API.
  • [plugin] Slope Markers V2.0

    4
    0 Votes
    4 Posts
    17 Views
    Didier BurD
    Hi, I've installed the plugin and got the same message as Rich. Uninstalled and re-installed, then I have always the same message: [image: WbD8_slopebug.jpg] Do we have to click on a tooltip to make it work ? And there's no help file (or I didn't find it). Clicking on 'Configure' outputs that in the Ruby console: Error; #<NameError; uninitialized constant SLB_JWMPlugins;;SlopeMarkers;;SlopeOverlay> c;/users/dbur/appdata/roaming/sketchup/sketchup 2020/sketchup/plugins/slb_jwm_slope_markers/user_parameters.rbe;406;in `get_parameter_values' c;/users/dbur/appdata/roaming/sketchup/sketchup 2020/sketchup/plugins/slb_jwm_slope_markers/slope_marker_tool.rbe;310;in `block in <module;SlopeMarkers>' The overlay toolbar displays no icon and launches no action. Please help, because I need it Regards,
  • [Plugin] FaceSplit v1.0.3

    44
    0 Votes
    44 Posts
    28k Views
    S
    Hello everyone, I really like this plugin,how do I acquire the Face Split Plugin?
  • [Plugin] Save group as component

    1
    0 Votes
    1 Posts
    4 Views
    No one has replied
  • [Plugin] Perpendicular Face Tools (UPDATED 26-03-09)

    201
    0 Votes
    201 Posts
    174k Views
    P
    Hello? I am using the Perpendicular Face Tools created by you. Recently, I would like to modify the content of the source code to add new features according to my needs. Your copyright notice will remain intact, and there will be no changes regarding the copyright. Could you grant me permission to modify the source code? Thank you.
  • [Plugin] ImageTrimmer

    364
    0 Votes
    364 Posts
    228k Views
    Didier BurD
    Hi all, Again about my problem (Java not working as expected): Here is the message I get after jar is launched: Error; #<Errno;;ENOENT; No such file or directory @ rb_sysopen - C;\Users\DBUR\Documents\TrimmedImages\Penture_033[Edges].dat> C;/Users/DBUR/AppData/Roaming/SketchUp/SketchUp 2023/SketchUp/Plugins/SKMtools/ImageTrimmer.rb;277;in `readlines' C;/Users/DBUR/AppData/Roaming/SketchUp/SketchUp 2023/SketchUp/Plugins/SKMtools/ImageTrimmer.rb;277;in `make_edges' C;/Users/DBUR/AppData/Roaming/SketchUp/SketchUp 2023/SketchUp/Plugins/SKMtools/ImageTrimmer.rb;201;in `process_image' C;/Users/DBUR/AppData/Roaming/SketchUp/SketchUp 2023/SketchUp/Plugins/SKMtools/ImageTrimmer.rb;170;in `initialize' C;/Users/DBUR/AppData/Roaming/SketchUp/SketchUp 2023/SketchUp/Plugins/SKMtools/ImageTrimmer.rb;834;in `new' C;/Users/DBUR/AppData/Roaming/SketchUp/SketchUp 2023/SketchUp/Plugins/SKMtools/ImageTrimmer.rb;834;in `block in <top (required)>' I have the png image file in the model's folder, but no 'Penture_033[Edges].dat' file All the rights (read/write etc...) are set for this folder. As it is said in the comments in ImageTrimmer.rb: @unknownuser said: There is a temporary 'data' file 'StandingMan1[Edges].dat' which contains '01' data used to construct the Sketchup Edges - this should be auto-erased whatever option you choose. Is this file a template, sort of ? Regards,
  • [Plugin] Descaler v1.1 20121218

    31
    0 Votes
    31 Posts
    25k Views
    Y
    Thanks a lot, TIG It's been 10 years... I think you need to replace the lines ts=Geom::Transformation.scaling(ct, 1.0/tx, 1.0/ty, 1.0/tz) c.transform!(ts) ### reset scale with c.transformation*=Geom::Transformation.scaling(1.0/tx, 1.0/ty, 1.0/tz) Because when there is a rotation transformation, it does not work correctly
  • [Plugin] Flattery papercraft tools

    91
    0 Votes
    91 Posts
    86k Views
    Mike AmosM
    Sorry if I missed something, V2022 and Flattery appears to be inconsistent. Is there a set process I am missing or some instruction to make sure I am not missing a step?
  • Find the midpoint of walls on a 2D DWG

    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • Can't Install Extrude Tools on SKP 2022

    2
    0 Votes
    2 Posts
    6 Views
    TIGT
    The Extrude Tools install and work just fine in all current versions of SketchUp. So something is clearly wrong with your end... Have you installed SketchUp properly ? If you are using a MAC have you installed SketchUp properly - i.e. you NOT working from the installer app version... But if you are on a PC Repair the installation whilst using Run as administrator on the Downloaded installer's exe file... If all else fails, try this clunky work around... Change the file-type suffix of the downloaded .RBZ to .ZIP Now extract the contents to a folder and move the RB and subfolder of the same name [with its contents in tact] into your v2022 Plugins folder. If it doesn't extract properly try downloading the RBZ another way... After you get the RB & subfolder into Plugins restart SketchUp and see what happens...
  • Suggestions for plugins for landscape architecture

    5
    0 Votes
    5 Posts
    400 Views
    L
    Reagarding these kind of suggestios, you can surely visit them, they have plenty of options and suggestion in this topic for sure. Tree Trimming Lafayette Hill
  • [Plugin] Add Height from Datum

    46
    0 Votes
    46 Posts
    61k Views
    J
    This is a great little tool. I know this thread is probably "dead" at this point, but worth a shot. Is there a way to update so that there would be a Elevation Datum and an Actual Datum? Say, Elevation: 97'-6", Actual: 6203'-6". Or even decimal points on the Actual. Thanks!

Advertisement