Metasequoia BBS

Page 7 8 9 10 11     
/ 314
| New message | Normal | Tree |
Status
Tag
Keyword
[9706] メタセコ新バージョンが出る可能性はありますか? / taiin
Done [Question,お礼] Response
こんにちは!
tetraface/metaseqさんの「20年くらいほとんど何も変えていなかった箇所に手を入れ始めると、あれもこれもと色々気になってしまう」というつぶやきはメタセコ新バージョンを出しちゃおうかな、というメッセージかもしれないと邪推してしまいました。
私はメタセコを1年半起動させ続けているおかしなメタセコファンなのでどうしてもワクワクしてしまいます。可能な範囲で教えていただけないでしょうか。
お願いします!
2023-02-19 09:48

Show the middle 1 messages.

[9709] Re: メタセコ新バージョンが出る可能性はありますか? / taiin
Tag has been changed from [Question] to [Question,お礼].
お忙しいところすみませんでした。私は現バージョンも使いこなせていませんし、自分のやりたいと思う事で出来ないことはほぼありませんのでサービスを続けていただくだけで満足です。返信ありがとうございました。
2023-02-20 15:11
[9704] cant use metaQ anymore crashes / metaSeq Script editor no longer works
[Announce,py script non works] Response
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

Show the middle 1 messages.

[9707] Re: cant use metaQ anymore crashes / Administrator
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
Done [Question,object plugin] Response
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 / Administrator
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
Not necessary [Announce,help ME AM STUCK HERE:] Response
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 / Administrator
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
[Request,help! ] Response
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

Show more...
2023-02-14 09:30

Show the middle 11 messages.

[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
Done [Question,local axis] Response
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

Show the middle 7 messages.

[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.
Not necessary [Request,help! ] Response
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")

Show more...
2023-02-15 15:40
[9686] Move object down and rotate / no error in code.
Not necessary [Request,help! ] Response
    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

Show more...
2023-02-15 09:47
[9674] FILE> EDIT> attribute> selected> object Delete Lines / Delete LINES
Not necessary [Request,help! ] Response
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

Show the middle 2 messages.

[9681] Re: FILE> EDIT> attribute> selected> object Delete Lines / Administrator
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
Done [Request,help! ] Response
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):

Show more...
2023-02-12 10:16

Show the middle 1 messages.

[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
Latest Previous page Next page