Search the Community
Showing results for tags 'visual'.
-
Hello, I was wondering if anyone has dabbled with building a custom environment for Python development in Houdini. My goal is to simulate the hython shell in visual studio code and run my script with corresponding feedback in a Houdini session. The SideFx documentation on Command-Line Scripting is a great start. I understand bash scripting and setting $PATH variables but with that said I am a noob for creating this kind of interwoven setup and could use some guidance.
-
My Effects Pipeline Destruction Constraint toolset Tree Rig Lib and much much more Viemo Playlist : https://vimeo.com/album/4484231 password : 6h45 please if you have any comments tell me !!
-
Not available
-
Hello everyone! I'm just wondering if someone knows how to create that a Particles meets and other particle stick togheter, and if is possible to made that. If there is a particle floating around and get close to an other particle floating around can they stick togheter. or any way that I can aproach that?
- 1 reply
-
- pop
- pop solver
-
(and 8 more)
Tagged with:
-
Hello everyone! I'm just wondering if someone knows how to create that a Particles meets and other particle stick togheter, and if is possible to made that. If there is a particle floating around and get close to an other particle floating around can they stick togheter. or any way that I can aproach that?
-
TRIXTER Munich is currently looking for experienced Mid & Senior Houdini FX TDs. Location: Munich Project: "Thor: Ragnarok" Type of contract: Freelance. From as soon as possible until end of September with option to extend in other projects. Responsibilities: Working closely with VFX Supervisors to creatively solve effects challenges and develop final shot look Deliver all elements in a structured way that allows efficient integration into the pipeline. Working with other TD's and artists to create photo-real effects and physically accurate simulations Working with production management to prioritize tasks. Creatively solve problems and achieve art direction for a shot. Anticipate, communicate and troubleshoot any creative and/or technical problems Requirements: Minimum 3+ years experience in the feature movie and/or television industry. Expert working knowledge of Houdini Software. Experience with rigid body and particle dynamics, volume modelling and rendering, procedural geometry generation and fluid dynamics Proficient knowledge of FX techniques and workflows. Understanding of Linux/Unix based operating systems. Familiarity with one or more coding /scripting languages (Python/Mel/etc) Good communication, organizational, time management and interpersonal skills. English language skills Due to the immediate need of our current project, we are only able to consider applicants who are already eligible to work in Europe. We are very much looking forward to receiving your application! Please send us your CV, the earliest commencement date and daily rate to laila.sleiman@trixter.de Thank you so much!
-
Hello, I'm James Adkins. Currently available for Houdini FX work. Please DM or email me(jameshadkins@me.com) for my demo reel password as the work in this reel is still under NDA. I have attached my CV as well, if there are any questions please let me know. jamesAdkins_resume_feb2017.pdf
-
Hello everybody, i am currently in the process of trying to generate a Visual Studio project that successfully builds Houdini plugins and later on create a cmake file to regenerate it. I looked at all tutorials i could find but am now stuck on a strange issue. Problem: The compilation process inside VS simply stops during the object creation stage for SOP_Star.C at this point: ................ 1>..\..\source\SOP_Star.C(213): warning C4244: '=' : conversion from 'double' to 'float', possible loss of data 1>..\..\source\SOP_Star.C(229): warning C4244: '=' : conversion from 'fpreal' to 'float', possible loss of data ========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ========== No errors of any kind, just lots of warnings (which is more or less normal, right!?). Setup: OS: Win7x64 Houdini: 13.0.260 built with VC11 Test Plugin: SOP_Star.C IDE: VS2013 with platform toolset set to VC110 (VS2012 which my H13 is built against) Command Line options: I was messing with this all day. Basically i just copied and/or corrected the settings i determined by running hcustom -c SOP_Star.C and hcustom -m SOP_Star.C into the Command Line options of Visual Studio. hcustom -e SOP_Star.C successfully builds the project. It also shows that it runs hcompile which then start the VS compiler with an additional cmd line option called -DUT_DSO_TAGINFO that hcustom -c doesnt show!? CL command line options: All options (grey field in Visual Studio/Properties/C/C++/CommandLine): /GS /GL /W3 /Gy /Zc:wchar_t /Zi /Gm- /O2 /sdl /Fd"x64\Release\vc110.pdb" /fp:precise /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_USRDLL" /D "SOP_STAR_EXPORTS" /D "_WINDLL" /D "_UNICODE" /D "UNICODE" /errorReport:prompt /WX- /Zc:forScope /Gd /Oi /MD /Fa"x64\Release\" /EHsc /nologo /Fo"x64\Release\" /Fp"x64\Release\sop_star.pch" Additional options (white field in Visual Studio/Properties/C/C++/CommandLine)....taken from hcustom -c: -nologo -TP -Zc:forScope -DVERSION="13.0.260" -DI386 -DWIN32 -DSWAP_BITFIELDS -D_WIN32_WINNT=0x0501 -DWINVER=0x0501 -DNOMINMAX -DSTRICT -DWIN32_LEAN_AND_MEAN -D_USE_MATH_DEFINES -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -D_SCL_SECURE_NO_WARNINGS -DBOOST_ALL_NO_LIB -DSESI_LITTLE_ENDIAN -DAMD64 -DSIZEOF_VOID_P=8 -DFBX_ENABLED=1 -DOPENCL_ENABLED=1 -DOPENVDB_ENABLED=1 -I . -I "D:/tools/SIDEEF~1/HOUDIN~1.260/toolkit/include" -I "C:/PROGRA~2/MICROS~3.0/VC/include" -I "C:/Program Files (x86)/Windows Kits/8.0/Include/um" -I "C:/Program Files (x86)/Windows Kits/8.0/Include/shared" -wd4355 -w14996 -O2 -DNDEBUG -MD -EHsc -GR -bigobj Anybody any ideas? Has anybody built plugins with VC11 from a Visual Studio Project successfully? Or does anybody even have a cmake file ready to generate VS2012 projects that successfully compile? Thanks in advance! Timm