Jump to content
3DCoat Forums

coverman

Member
  • Posts

    23
  • Joined

  • Last visited

Recent Profile Visitors

2,135 profile views

coverman's Achievements

Neophyte

Neophyte (2/11)

5

Reputation

1

Community Answers

  1. I read the script manual & updated. https://github.com/coverman03/3dcoat_script/blob/master/surface/yzk_decimateAndClean.script.txt
  2. I know 3dcoat have same problem. I can't get & set SteadyStroke (bool & value) by script. Should I report it to mantis?
  3. - Radius lock - does not work I had thought Radius Lock can be set with bool command. This is the command Toggle "Radius Lock" cmd("$LOCK_SCREEN_RADIUS"); It works as only Toggle, and can't get & set the status. so, looks like it's impossible.
  4. Answer to 1. Enter key is assigned "SetCurVolumeMode(change surface or voxel)" So, I think it's excuted... Answer to 2. please add this command like this. cmd("$DialogButton#1");/*press ok button*/ void main(){ ShowFloatingMessage("decimate&clean", 3); InstallToMenu("Geometry","decimate+clean"); cmd("$Decimate");/*Decimate*/ cmd("$DialogButton#1"); Step(1); cmd("$CleanSurface");/*Clean Surface*/ cmd("$DialogButton#1"); Step(1); } maybe it will work as you like. but the decimate command need user input on my PC. I don't know why...
  5. It's ok, I see what happened. I'm update yzk_sampleStartup.script.txt https://github.com/coverman03/3dcoat_script/blob/master/sample/yzk.sampleStartup.script.txt
  6. I think your procedure is correct. Please excute this most simple script. https://github.com/coverman03/3dcoat_script/blob/master/sample/yzk_helloWorld.script.txt Run script it will popup and show"HelloWorld" 3 seconds. If not work, wrong something...
  7. 1.Open this Path(It's OK anywhere like this D:\home\3dcoat\scripts) C:\Users\****\Documents\3D-CoatV4\Scripts 2.make new folder named "yzk" 3.create new text file named "yzk_startup.script.txt" 4.copy and paste this script. https://github.com/coverman03/3dcoat_script/blob/master/sample/yzk.sampleStartup.script.txt 5.save it. 6.In 3dcoat [scripts]-[Run Script] and select "yzk_startup.script.txt" ----completed 7.Let's see the [scripts]menu."yzk_startup.script.txt" has been added.  you can excute this any time and define hotkey by "End key"
  8. I forgot to talk about notes. This command can excute on V4.5 beta 10 higher. Structure of Symmetry command is changing at beta.
  9. This is it. we can assign this command as hotkey. void main(){ InstallToMenu("Geometry","decimate+clean"); cmd("$Decimate");/*Decimate*/ Step(1); cmd("$CleanSurface");/*Clean Surface*/ Step(1); }
  10. we can set these value with script. void main(){   SetSliderValue("$PEN_RADIUS",10.00);/*Pen Radius 10*/   SetBoolField("$SymmetryParams::EnableSymmetry",true);/*Enable Symmetry*/   SetBoolField("$SymmetryParams::SymmX",true);/*X - Axis*/   SetBoolField("$VIEW_ORTHO",true);/*Orthographic Projection*/ } If we can run this script then 3dcoat startup, I think it's usefull.
  11. I has released some short scripts for beginner like me. https://github.com/coverman03/3dcoat_script
  12. And next, ・I want to get Current Voxel Layer sort number in Boxel Tree. ・I want to get how many childs current Voxel Layer have. --Voxel-- array GetVoxTreeBranch();/*get voxel tree array(string, array(string1, string2), string, string)*/ int GetCurVoxChildsCount(); /*get current voxel childs count*/ int GetCurVoxSortNumber();/*get current voxel sort position*/ SetCurVoxSortNumber(int);/*set current voxel sort position*/ I can not sort the voxel layer by script.
  13. I think 3dcoat need these simple commands. --Voxlel-- GetCurVoxParent("string"); /*get current voxel parent*/ SetCurVoxParent("string"); /*Set current voxel parent*/ --Retopo-- cmd("$UnhideAllRetopo");/*Unhide All retopo groups*/ cmd("$ShowAllRetopo");/*Show All Hidden Retopo groups*/ cmd("$InvertHideRetopo");/*Invert Hidden Retopo*/ cmd("$HideButCurrentRetopo");/*Retopo Isolate*/ cmd("$Toggle_Retopo_visibility");/*Toggle Retopo Visibility*/ cmd("$MergeVisibleRetopo");/*Merge Visible Retopo*/ cmd("$CloneRetopo");/*Clone*/ cmd("$CloneSymmRetopo");/*Clone w/ Symmetry*/ cmd("$FlipNormalsRetopo");/*FlipNormals*/ cmd("$DecomposeRetopo");/*Object-ify (separate to each retopo groups)*/ I don't know how to use mantis. Please consider this idea and add task for mantis.
  14. I think all cause of Sticky keys problem is in hotkey setting. Hotkey XML is delicate but simple, so I think It is graphic draw lag or somthing like that. The problem you face, is cased at simple New scene? At least, you would be better to set these settings. ・[View]-[ReliefOnly] select ・[Geometry]-[CastaShadow] Off ・[Geometry]-[incrementalRender] Off Advice form me is all...
  15. I think you already custom your hotkey, maybe UserDefined number was modifeid. You just want to disable all sticky keys, you should set <UserDefined>0</UserDefined> in the hotkey file. <userDefined>number manages the order sort of Stacked keys. please try do this.
×
×
  • Create New...