⚠️ Important | Libfredo 15.6b introduces important bugfixes for Fredo's Extensions Update
  • [Plugin] Physically-Based Rendering - v1.5.9 - 19 Apr. 2020

    119
    0 Votes
    119 Posts
    96k Views
    pilouP
  • Toposhaper Error 2.6v

    1
    0 Votes
    1 Posts
    32 Views
    No one has replied
  • Toposhaper Error 2.6v

    1
    0 Votes
    1 Posts
    22 Views
    No one has replied
  • [Plugin] C of G Reporter 1.3

    41
    0 Votes
    41 Posts
    83k Views
    TIGT
    Read the first post in this thread... @unknownuser said: Usage: Use this after adding some CofG's [i.e. 'Center of Gravity' tags] Type 'cofgreporter' in the Ruby Console. If the Model SKP is new and has not yet been saved you will get an error. If there are no CofG's to Report you will get an error. If the destination CofG Report cannot be written - e.g. it's already open in Excel - you will get an error. Otherwise a CofG Report is written into the Model's folder. It is named to match the Model - e.g. 'MyModel.skp' and 'MyModel_CofG_Report.csv' A '.csv' file can be opened in Excel etc. Link the .csv into a pre-formated .xls file with additional 'sums' etc, so that it auto-updates. It is sorted alphanumerically and reports 'ID' 'Weight' 'Volume' - the final two are in the units used in the CofG's. The 'ID' is the CofG name-tag based on the original Instance's name, but remember that you might have adjusted this in the dialogs during the making of the CofG's - i.e. it is as displayed in the CofG's text-tag, not necessarily the Instance's name.
  • [Plugin or command code Inquiry] Switch Shadow On Off

    6
    0 Votes
    6 Posts
    138 Views
    onzkiO
    @hdpv said: Try this extension https://sketchucation.com/pluginstore?pln=s4u_OnOff_Shadow https://extensions.sketchup.com/extension/67b384a4-081d-4165-bc61-54f18891cbd3/s4u-on-off-shadow Awesome! This is exactly what I'm looking for. cheers!
  • [Plugin] ComponentPlus

    1
    0 Votes
    1 Posts
    65 Views
    No one has replied
  • JHS Powerbar

    1
    0 Votes
    1 Posts
    153 Views
    No one has replied
  • [Plugin] Blackout

    23
    0 Votes
    23 Posts
    23k Views
    onzkiO
    @didier bur said: Hi, me again, Here is an enhanced version with which you can select your color in a list. Regards, Amazing! Big Thanks!
  • Error loading Fredo6 plugins

    25
    0 Votes
    25 Posts
    12k Views
    Rich O BrienR
    @nitya kalola said: [attachment=0:2er6cnd0]<!-- ia0 -->WhatsApp Image 2023-08-25 at 1.04.49 AM.jpeg<!-- ia0 -->[/attachment:2er6cnd0] Remove Libfredo folder and Libfredo.rb from Plugins folder and do a fresh install of the latest release.
  • [Plugin] Proper Animation V1.08 Beta(Updated 14/11/10)

    246
    0 Votes
    246 Posts
    184k 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
    104 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
    225k 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
    30k 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
    46 Views
    No one has replied
  • [Plug in Inquiry/Request] Material manager/outliner/exporter

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

    2
    0 Votes
    2 Posts
    32 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
    38k 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
    117 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
    30k Views
    S
    Hello everyone, I really like this plugin,how do I acquire the Face Split Plugin?

Advertisement