All Projects → Codel1417 → VRC-Ender-3

Codel1417 / VRC-Ender-3

Licence: MIT, Unknown licenses found Licenses found MIT LICENSE Unknown LICENSE.meta
A functional 3d printer for VRChat worlds

Programming Languages

C#
18002 projects
HLSL
714 projects
ShaderLab
938 projects

Projects that are alternatives of or similar to VRC-Ender-3

UdonRabbit.Analyzer
DEPRECATED (U#1.0 not supported) .NET Roslyn Analyzer for VRChat Udon and UdonSharp.
Stars: ✭ 44 (+0%)
Mutual labels:  vrchat, udon, vrchat-udon, udonsharp
UNet
Network system for VRChat UDON
Stars: ✭ 19 (-56.82%)
Mutual labels:  vrc, vrchat, udon, udonsharp
UdonVideoplayer
VRChat Videoplayer for Quest and PC
Stars: ✭ 20 (-54.55%)
Mutual labels:  vrchat, vrchat-udon, udonsharp
USharpVideo
A basic video player made for VRChat using Udon and UdonSharp
Stars: ✭ 238 (+440.91%)
Mutual labels:  vrchat, udon, udonsharp
WorldCreatorAssistant
Unity Editor extension for automating VRChat world project package management
Stars: ✭ 133 (+202.27%)
Mutual labels:  vrchat, vrchat-worlds
SKR-V1.4-Turbo-Stepper-Driver-Jumper-Configuration-Manual
SKR V1.4 TURBO Stepper Driver Jumper Configuration Manual
Stars: ✭ 33 (-25%)
Mutual labels:  ender3, ender-3
vrcbce
VRCBilliards: Community Edition
Stars: ✭ 198 (+350%)
Mutual labels:  prefab, vrchat
VRChatRejoinTool
This software helps rejoin to the VRChat instance.
Stars: ✭ 51 (+15.91%)
Mutual labels:  vrchat
DynamicBonesStudio
A useful tool for quickly setting up and manipulating dynamic bones for Unity characters
Stars: ✭ 60 (+36.36%)
Mutual labels:  vrchat
Block-Breaker-Original
Arkanoid clone build as part of the Complete Unity C# Developer 2D course (http://gdev.tv/cudgithub)
Stars: ✭ 45 (+2.27%)
Mutual labels:  prefab
PrefabEditor
You can edit Prefab which could not be edited much unless you place it on Scene.
Stars: ✭ 23 (-47.73%)
Mutual labels:  prefab
KorikasAvatarPlugin
🐈 Manage your VRChat avatars with ease!
Stars: ✭ 27 (-38.64%)
Mutual labels:  vrchat
BowieCode
Personal Code/Snippet Library for Unity 3D
Stars: ✭ 23 (-47.73%)
Mutual labels:  prefab
vrchatapi-javascript
🟡 VRChat API Library for JavaScript and TypeScript
Stars: ✭ 32 (-27.27%)
Mutual labels:  vrchat
SmartReplace
Unity plug-in for replacing scene objects while keeping their references.
Stars: ✭ 50 (+13.64%)
Mutual labels:  prefab
SlimeVR-Server
Server app for SlimeVR ecosystem
Stars: ✭ 361 (+720.45%)
Mutual labels:  vrchat
vrchatapi-csharp
🟣VRChat API Library for C#
Stars: ✭ 27 (-38.64%)
Mutual labels:  vrchat
Unity-MSDF-Fonts
Basic tool to convert Unity fonts to use Multichannel Signed Distance Field fonts
Stars: ✭ 54 (+22.73%)
Mutual labels:  vrchat
VRCMods
⚙️ New features & quality of life improvements for VRChat
Stars: ✭ 21 (-52.27%)
Mutual labels:  vrchat
material-combiner-addon
Blender addon for material combining, uv bounds fixing
Stars: ✭ 309 (+602.27%)
Mutual labels:  vrchat

VRChat Ender 3 Udon 3D Printer

This is a functional 3d printer in VRChat which prints real Marlin gcode files. Print progress is synced over the network. Supports English, UwU, and Japanese languages.

Large shot of printer

Requirements

How to use

  1. Download the newest Release from here
    • Please do not use the zip file, but the UnityPackage.
  2. Import the project into your Unity Project.
  3. Place the prefab in your world.

Interacting with the printer

The printer uses a menu inspired by Marlin but with changes to be touch friendly. Buttons are used instead of the rotary wheel the Real Ender 3 uses. Use your hand pointer to interact with the printer. Clicking anywhere on the status screen will open the menu.

Main Menu

Adding your own GCode to the printer

  1. Change the file extension of your '.gcode file to '.txt'.
    • You may need to Check 'Show File Extensions' in windows explorer.
  2. Duplicate a GameObject under Ender_3_VRC/GCode Files.

GCode Hierarchy showing what code to clone

  1. Set File to your GCode file '.txt'.
  2. Set the GameObject name to your Model name. This is the name that will be displayed in the UI.

GCode Inspector

Compatible GCode can be generated in any Marlin compatible slicer. Ultimaker Cura with the Ender 3 profile works great.

Customization

The display colors can be set in the Display object. These colors are applied at world load.

Image of the display inspector

What is GCode?

GCode is a text file that contains commands for a 3D printer to execute. these commands are simple. Go here, Set Temperature, Put plastic between two points.

Example GCode

M190 S65 ; Set Bed Temperature to 65C
M109 S225 ; Set Hotend Temperature to 225C
G1 X0.1 Y20 Z0.3 F5000.0 ; Move to start position
G1 X0.1 Y200.0 Z0.3 F1500.0 E15 ; Draw the first line
G1 X0.4 Y200.0 Z0.3 F5000.0 ; Move to side a little
G1 X0.4 Y20 Z0.3 F1500.0 E30 ; Draw the second line

Supported GCode commands

  • G0/G1 Linear Move
  • G28 Auto Home
  • G90 Absolute Positioning
  • M25 Pause
  • M73 Set Print Progress
  • M82 Relative Positioning
  • M104 Set Hotend Temperature
  • M106 Set Fan Speed
  • M107 Fan Off
  • M109 Wait For Hotend Temperature
  • M117 LCD Print
  • M118 Serial Print
  • M140 Set Bed Temperature
  • M190 Wait For Bed Temperature

Notes

  • Print Bed size is 235X 235Y 250Z.
  • Minimum extrusion temperature is 160C (Cold Extrusion Protection).
  • Incapable of filament pressure simulation.
  • Supports are unnecessary as gravity is a relic of the past.
  • Please do not remove any credits given, Just append to the credits pages.
  • Due to the Oculus Quest's lack of geometry shader support, the printer will not work on Quest. It will move and print but the printed part will be invisible.

Credits

License

Licensed under the MIT License.

Other Information

Adding a language

To add support for an additional language, just place the text file in the Assets/Ender 3/Language folder. The name of the file should be the same as the language. On Upload/Play the script will automatically detect the languages.

Language files in project folder

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].