Пікірлер
@UNKNOWN-kg7nx
@UNKNOWN-kg7nx 6 күн бұрын
amazing job!! thanks for this framework.
@u235hr
@u235hr 2 ай бұрын
老师你好,我是个python和blender初学者.我对数据的3D可视化挺感兴趣,本来想试着编写一个生成趋势图的脚本,但第一步就卡住了,就是关于用什么承载数值信息.我看网上教程,知道平面上的点可以用自定义属性的方式遍历进数值信息,但是如果是趋势图,生成的是一条贝塞尔曲线,我就懵了,因为贝塞尔曲线好像是没有属性这个东西的.想请教下老师,该怎么处理呢?或者老师您的视频哪一个里有这方面的信息,我进去虚心学习.感谢!
@xinyuzhu4448
@xinyuzhu4448 2 ай бұрын
@@u235hr 你这个主要是模型操作了 应该是bmesh API那一块的东西 专门用代码去建模。 这个比较专业了 可以查一下bmesh相关的资料
@Charchit_Goyal
@Charchit_Goyal 6 ай бұрын
Hey Xinyu! I am a artist who is currently learning python to build addons for blender! Would it be possible for you to answer some of my questions! If yes then is there any social media platform where I can connect with you?
@xinyuzhu4448
@xinyuzhu4448 6 ай бұрын
Oh sure, my Discord: xinyu199609
@Charchit_Goyal
@Charchit_Goyal 6 ай бұрын
@@xinyuzhu4448 Thank you! I have sent you a friend request
@yongyukong2741
@yongyukong2741 6 ай бұрын
终于看到一个中文的了
@rayenwiller7879
@rayenwiller7879 6 ай бұрын
这套教材太赞了
@silbarlvel
@silbarlvel 6 ай бұрын
支持学者大大😙
@bluerdoll3460
@bluerdoll3460 9 ай бұрын
i imagine just a little *boop* at the end.
@VictoryLuode
@VictoryLuode Жыл бұрын
老哥加油! 可以加个更新按钮,参照NodeKit的 能够自定义目录节点顺序, 还有个建议就是加载节点可以改为用link,这样第二次加载的节点就不会完全重建节点组了,可以给个选项。 老哥的这个插件比NodeKit的好用,加油
@VictoryLuode
@VictoryLuode Жыл бұрын
老哥,可以加个更新按钮,这样方便些
@nunosousa154
@nunosousa154 Жыл бұрын
Hey, first of all congrats on the amazing looking addon, just one question; does this solve the mixer node cross compatibility?
@xinyuzhu4448
@xinyuzhu4448 Жыл бұрын
Thank you for the good question! So Blender3.4 add new mix Node for mixing float color and vector. From Python API perspective, it is a new node class ShaderNodeMix. If you load the mix node to lower blender version with the addon, it will failed. However, I have decided to add a specific support for the mix node, given its popularity: when there is no ShaderNodeMix in the environment, I can create a math node group to take place of it. You can expect this function in next addon version(1.0.6)
@xinyuzhu4448
@xinyuzhu4448 Жыл бұрын
Oh by the way, although you can't find the old mix color node in Blender3.4, it is not removed from environment. Blender removed it from UI, but the addon can add the ShaderNodeMixRGB using Python code, so the current addon can help you restore the mix color node to higher Blender version
@nunosousa154
@nunosousa154 Жыл бұрын
@@xinyuzhu4448 thank you for your quick response, I'm considering buying this add-on and this was the main feature I was interested in
@xinyuzhu4448
@xinyuzhu4448 Жыл бұрын
@@nunosousa154 1.0.6 published: see kzbin.info/www/bejne/p2GsnoSFjLqEp68
@nunosousa154
@nunosousa154 Жыл бұрын
@@xinyuzhu4448 awesome, soon I'll grab this add-on from the market
@xinyuzhu4448
@xinyuzhu4448 2 жыл бұрын
Geometry Node that uses a Material are now be supported. For nodes that refer objects, an empty object with the same location, rotation and scale will be used to restore them.
@BMACMASTAMIND
@BMACMASTAMIND 2 жыл бұрын
Nice! 🔥🔥🔥
@ikfreeprogrammer5134
@ikfreeprogrammer5134 4 жыл бұрын
how to install kivy studio pleas tel me
@Beautifulworld02-r
@Beautifulworld02-r 4 жыл бұрын
He bro can you make video on django
@mizouman
@mizouman 5 жыл бұрын
thank you for sharing
@priyanshuupadhyay7095
@priyanshuupadhyay7095 6 жыл бұрын
Hello Xinyu , your videos are great, thank you for uploading such great content, well I am stuck in a situation, okay I followed your step and came up with exactly same output, now I want that instead of giving image file directly is there any way I can prompt user to select a file of his choice. I tried using filechooser but some or the other reason I am not getting any output. expected output 4th box- Button or label - select an image file of your choice. then file browser should open , where user can select a file of his own choice. Thanks in advance.
@xinyuzhu4448
@xinyuzhu4448 6 жыл бұрын
You are talking about dynamic interface update. This can not be done from the kivy file which manages the static outlook. You may need to read the functions of kivy.uix.image (kivy.org/docs/_modules/kivy/uix/image.html) the texture_update method is used to update the image dynamically.
@ErvinMile
@ErvinMile 6 жыл бұрын
Thanks for the video, very well explained. Do you know where can I find the Kivy Catalog? It seems very practical.
@xinyuzhu4448
@xinyuzhu4448 6 жыл бұрын
here kivy.org/docs/examples/gen__demo__kivycatalog__main__py.html, you can find it also below the first video
@TheArchaeus6
@TheArchaeus6 6 жыл бұрын
A very good tutorial for a beginner like me. It is hard to find any that don't already assume you are a python and GUI master. I appreciate it.
@raucheacho
@raucheacho 6 жыл бұрын
please can you send me all files
@xinyuzhu4448
@xinyuzhu4448 6 жыл бұрын
please download it from my github: github.com/xzhuah/Kivy-Tutorial
@xinyuzhu4448
@xinyuzhu4448 6 жыл бұрын
Please refer to the first video here: kzbin.info/www/bejne/sJ6YY2ubiaxpobM, I provided all the file link in the comment
@raucheacho
@raucheacho 7 жыл бұрын
very good video i like it and learn with you really thanks
@histoplasmosis
@histoplasmosis 7 жыл бұрын
Increase audio volume please.
@danielhong6487
@danielhong6487 7 жыл бұрын
HEYYYYYYYYYY
@infijeweltech6641
@infijeweltech6641 7 жыл бұрын
hello do u undertake freelance work?
@xinyuzhu4448
@xinyuzhu4448 7 жыл бұрын
I am an undergraduate student
@srinivassagit2573
@srinivassagit2573 5 жыл бұрын
still you are searching for a freelancer?
@xinyuzhu4448
@xinyuzhu4448 7 жыл бұрын
Kivy official website: kivy.org/#home Kivy Tutorial: kzbin.info/www/bejne/eYqxiH5ofNWqnaM kivy Layout GIF: kivy.org/docs/guide/widgets.html Kivy Catalog: kivy.org/docs/examples/gen__demo__kivycatalog__main__py.html source code for tutorial: github.com/xzhuah/Kivy-Tutorial