Metasequoia BBS

ページ 7 8 9 10 11     
/ 306
| 新規投稿 | 通常表示 | ツリー表示 |
状態
タグ
キーワード
[9706] メタセコ新バージョンが出る可能性はありますか? / taiin
対応済み [質問,お礼] 返信
こんにちは!
tetraface/metaseqさんの「20年くらいほとんど何も変えていなかった箇所に手を入れ始めると、あれもこれもと色々気になってしまう」というつぶやきはメタセコ新バージョンを出しちゃおうかな、というメッセージかもしれないと邪推してしまいました。
私はメタセコを1年半起動させ続けているおかしなメタセコファンなのでどうしてもワクワクしてしまいます。可能な範囲で教えていただけないでしょうか。
お願いします!
2023-02-19 09:48

途中の1件のメッセージを表示

[9709] Re: メタセコ新バージョンが出る可能性はありますか? / taiin
タグが [質問] から [質問,お礼] に変更されました。
お忙しいところすみませんでした。私は現バージョンも使いこなせていませんし、自分のやりたいと思う事で出来ないことはほぼありませんのでサービスを続けていただくだけで満足です。返信ありがとうございました。
2023-02-20 15:11
[9704] cant use metaQ anymore crashes / metaSeq Script editor no longer works
[アナウンス,py script non works] 返信
none of the py scripts arent working anymore.
no error it just crashes whole metaq
any script i run it crashes, even from folder scripts not working
cant use naymore :S
2023-02-17 15:14

途中の1件のメッセージを表示

[9707] Re: cant use metaQ anymore crashes / 管理者
Have you solved the problem yet?

While it is rare for a Python script to terminate abnormally when used, it is possible for a problem to occur, e.g., by using the wrong function call.
We can't offer any advice without knowing what script you are running, but please let us know if you know what the offending trigger is.
2023-02-20 10:56
[9693] Object plugin updating objects / d4rt
対応済み [質問,object plugin] 返信
Is it possible to update an object before the plugin's Execute function returns TRUE or do I have to use station plugins for this?
2023-02-16 21:02
[9703] Re: Object plugin updating objects / 管理者
An 'Object' plugin is normally unloaded, and loaded only when called.

A 'Station' plugin are always loaded. In addition to user-operated processing within an independent panel, it can also monitor status, timer processing, etc.
2023-02-17 09:25
[9701] HELPPPPPPP / HELPPPPPPPPPPPP
対応不要 [アナウンス,help ME AM STUCK HERE:] 返信
help!

>s = MQSystem
>d = s.getDocument()
>o = d.object[d.currentObjectIndex]
>o.translation = s.newPoint(0,0,0)
>o.rotation = s.newAngle(0,180,0)
>m = o.rotation.getMatrix()
>for v in o.vertex:
>    n = m.mult3(v.getPos())




it rotates model SO far i need it to rotate center of the model WORLD  when i click Rotate it rotates fine in there x axisi 90.  and i cant cant get working to move object down :s
same as selecting Move and move it down. :S idk :S
2023-02-17 03:27
[9702] Re: HELPPPPPPP / 管理者
Please don't post unnecessarily continuously. This is not your exclusive space. If you post too repeatedly, we may limit or delete your posts.

Please consider first trying to solve the problem through trial and error and self-help.
2023-02-17 07:52
[9677] flip horzitanly :S / cant mirror in code dsnt let me select mirrored fa
[要望,help! ] 返信
import MQSystem

doc = MQSystem.getDocument()
objects = [None, None]
objnum = doc.numObject

for oi in range(0, objnum):
    obj = doc.object[oi]
    if obj is None:
        continue
        
    if obj.name == "obj1":
        objects[0] = obj

for obj in objects:
    if obj is None:
        continue
        
    obj.mirrorType = 1  # Separate at center
    obj.mirrorAxisX = 1  # Disable X axis mirroring

続きを表示...
2023-02-14 09:30

途中の11件のメッセージを表示

[9700] Re: flip horzitanly :S / no error in code.
>s = MQSystem
>d = s.getDocument()
>o = d.object[d.currentObjectIndex]
>o.translation = s.newPoint(0,0,0)
>o.rotation = s.newAngle(0,180,0)
>m = o.rotation.getMatrix()
>for v in o.vertex:
>    n = m.mult3(v.getPos())




it rotates model SO far i need it to rotate center of the model WORLD  when i click Rotate it rotates fine in there x axisi 90.  and i cant cant get working to move object down :s
same as selecting Move and move it down. :S idk :S

2023-02-17 03:23
[9668] Change object's local axis via plugin or script / d4rt
対応済み [質問,local axis] 返信
I have a few objects consisting of 1 face each. I need a way to automatically align the local axis of these objects with the faces' normal vector. Is it possible to do so via a plugin or a python script?
2023-02-11 01:20

途中の7件のメッセージを表示

[9689] Re: Change object's local axis via plugin or script / no error in code.
>I have a few objects consisting of 1 face each. I need a way to automatically align the local axis of these objects with the faces' normal vector. Is it possible to do so via a plugin or a python script?

need snipped to move Obj1 to up bit and rotate 180  in 3dview port with py script ! :S
2023-02-15 17:28
[9688] help rotate obj1 to 180 and move it down / no error in code.
対応不要 [要望,help! ] 返信
import MQSystem

doc = MQSystem.getDocument()
objnum = doc.numObject

# Find the object to move
for oi in range(objnum):
    obj = doc.object[oi]
    if obj is not None and obj.name == "obj1":
        print("Found obj1")
        if hasattr(obj, "translation"):
            # Move the object down by 1 unit
            translation = obj.translation
            translation.y -= 1
            obj.translation = translation
            # Rotate the object 180 degrees
            rotation = MQSystem.newAngle(0, 180, 0)
            obj.rotation = rotation
        else:
            print("obj1 does not have a translation attribute")

続きを表示...
2023-02-15 15:40
[9686] Move object down and rotate / no error in code.
対応不要 [要望,help! ] 返信
    import MQSystem
    import math
    
    doc = MQSystem.getDocument()
    objects = []
    
    # Find the objects we want to move and rotate
    for oi in range(doc.numObject):
        obj = doc.object[oi]
        if obj is not None and obj.name == "obj1":
            objects.append(obj)
    
    # Move and rotate the objects
    for obj in objects:
        # Move the object down
        obj.translation.y -= 10.0  # Adjust the value to move the object to the desired height
    
        # Rotate the object
        mtx = MQSystem.newMatrix()
        # Set the matrix to rotate around the X axis by 45 degrees

続きを表示...
2023-02-15 09:47
[9674] FILE> EDIT> attribute> selected> object Delete Lines / Delete LINES
対応不要 [要望,help! ] 返信
import MQSystem

doc = MQSystem.getDocument()
objnum = doc.numObject
for oi in range(0, objnum):
    obj = doc.object[oi]
    if obj is None:
        continue


        
    if obj.name == "obj":
        obj.select = 1
        break



hmm i cant find to delete Lines in there :/  so script editor deletes lines for me ! doing script but cant find that one :S
2023-02-13 13:38

途中の2件のメッセージを表示

[9681] Re: FILE> EDIT> attribute> selected> object Delete Lines / 管理者
Don't you understand what 'pseudo code' means?
It doesn't work as is, so you need to make your own improvements to incorporate it.
See more standard samples included in the Script folder.
2023-02-14 14:04
[9669] i cant find Join closed vertices Code / material poperty parameters
対応済み [要望,help! ] 返信
Join Closed Vertices:
Any vertices in the current object, which are close to each other, are joined together. (A dialog box appears, which you use to specify how close together the vertices need to be.)

i cant find Join closed vertices Code


import MQSystem

doc = MQSystem.getDocument()
objnum = doc.numObject
for oi in range(0, objnum):
    obj = doc.object[oi]
    if obj is None:
        continue
        
    if obj.name == "obj":
        obj.select = 1
        break

for oi in range(0, objnum):

続きを表示...
2023-02-12 10:16

途中の1件のメッセージを表示

[9673] Re: i cant find Join closed vertices Code / material poperty parameters
>MQObject.optimizeVertex() joins vertices within a specified distance. Is this function what you are looking for?

yes thnx!
2023-02-13 13:35
最新 前のページ 次のページ