List of Contributions

Webb

Contact Details

Webb


My Content

1 to 12 of 12 total
Posted By Webb Feb 26, 2026 09:38:59 AM
Found In Egroup: Emulate3D Software
\ view thread
@⚙ Andre Yost Even if you save as Demo3dx and add the .github folder to that location, when emulate3d compiles and creates the temporary folders it wont copy that folder over. ------------------------------ Jeremy Webb Technical Manager Qc, Canada ------------------------------
Posted By Webb Feb 11, 2026 10:44:43 AM
Found In Egroup: Emulate3D Software
\ view thread
Hello all, in our team we use the removeBySize catalog item inside of emulate3d for a very rough pass. For more complex cads we use CadFIX software to remove holes and complicated geometry decimation. ------------------------------ Jeremy Webb Technical Manager Qc, Canada -------------------- ...
Posted By Webb Feb 11, 2026 10:43:06 AM
Found In Egroup: Emulate3D Software
\ view thread
Hi! In the plugin i can get the AppData file location using Environment.SpecialFolder.ApplicationData. To which i append .emulate3d-dll and then order the list of temp folder by last write time. This assumes you havent openend another e3d window! string basePath = Path.Combine( Environment.G ...
Posted By Webb Feb 09, 2026 03:03:07 PM
Found In Egroup: Emulate3D Software
\ view thread
For those interested, I ended up creating a plugin project in e3d where my .md files for instructions exist. Upon opening Emulate3d, i run my plugin to create the folder structure and copy over the instruction files to the temporary folder. I can then use github copilot with our standardized instructions. ...
Posted By Webb Feb 09, 2026 10:06:00 AM
Found In Egroup: Emulate3D Software
\ view thread
Hey @Daniel Giraldi, The flighted conveyors have some default scripting on them for flowcontrol. Ive faced the same issue in the past and the solution was to install the following : Then you can add this aspect to a basic uncontrolled conveyor. Good luck! -------------------------------------- ...
Posted By Webb Feb 09, 2026 09:54:00 AM
Found In Egroup: Emulate3D Software
\ view thread
Hello Team, we are currently in a process to standardize our projects and were exploring GitHub copilot instructions. These work great but since E3D saves scripts in a temporary location and doesn't copy over the .github folder. I have to go in manually and move that folder each time. Is there ...
Posted By Webb Aug 26, 2025 11:06:00 AM
Found In Egroup: Emulate3D Software
\ view thread
Hi Mike, I was still confused why this script crashed my model last week so i kept investigating and i believe i have found the problem. Since we are dividing the conveyor by the flight spacing, i must have inputed a distance of 0 which caused a division by 0. I tried in a unit test model and ...
Posted By Webb Aug 25, 2025 02:23:00 PM
Found In Egroup: Emulate3D Software
\ view thread
I have found the other line causing the amount of flights to be incorrect : ControlPointVisual.cs > Line 783 > var n = (int)(Math.Round(length / targetSpacing, 0)); corrected the division to be inside the Math.Round FlightedConveyorAspect.cs > Line 601 and 749 > var nF = (int)(Math.Round(pathLength ...
Posted By Webb Aug 25, 2025 02:10:00 PM
Found In Egroup: Emulate3D Software
\ view thread
Looking at the script, i noticed this line is incorrectly calculating the number of flights needed : var nF = (int)(Math.Round(pathLength,0) / fSpace); It rounds the path length instead of the result of the division. Moving the division into the round does now calculte the right amount of flights ...
Posted By Webb Aug 25, 2025 01:45:00 PM
Found In Egroup: Emulate3D Software
\ view thread
Hello All, I've been trying to use the flight conveyor script but when added to a straight conveyor, under certain circumstances it doesn't create the appropriate amount of flights and it also crashed my project. Behavior noticed is as follow : Under certain belt lengths the script will ...
Posted By Webb Jun 20, 2025 08:16:00 AM
Found In Egroup: Emulate3D Software
\ view thread
Thanks, came in fresh this morning. The part i wasn't understanding yesterday was what was the visual factory. My mind defaulted to it being like a load creator and you would need to indicate to it a list of loads. I now understand that a visual added to a catalog becomes a visual factory.
Posted By Webb Jun 19, 2025 09:15:00 AM
Found In Egroup: Emulate3D Software
\ view thread
Hello team, Ive been looking into advancing my knowledge around creating visuals via scripting and am trying to find documentation or examples around the usage of visual factories. The API gives very little information and i found this link : https://store.sim3d.com/demo3d_2025/catalog_compone ...