Search Forums

(Advanced Search)

Latest Threads
Updating softbody vertex ...
Forum: Obi Softbody
Last Post: Aroosh
5 minutes ago
» Replies: 2
» Views: 12
How can I detect my secon...
Forum: Obi Rope
Last Post: josemendez
6 minutes ago
» Replies: 9
» Views: 304
Problem with softbody and...
Forum: Obi Softbody
Last Post: aardworm
Yesterday, 02:25 PM
» Replies: 12
» Views: 3,710
Obi 7 disable simulation
Forum: Obi Rope
Last Post: natko1412
28-03-2025, 11:21 AM
» Replies: 6
» Views: 342
Reduce particles after bl...
Forum: Obi Softbody
Last Post: josemendez
25-03-2025, 08:11 AM
» Replies: 1
» Views: 119
Pinholes: new component f...
Forum: Announcements
Last Post: josemendez
24-03-2025, 09:17 AM
» Replies: 7
» Views: 641
unity6 errors
Forum: Obi Rope
Last Post: josemendez
23-03-2025, 08:26 PM
» Replies: 1
» Views: 164
Settings Obi Skinned Clot...
Forum: Obi Cloth
Last Post: cgwill
22-03-2025, 09:02 PM
» Replies: 0
» Views: 90
Growing a rope attached t...
Forum: Obi Rope
Last Post: josemendez
18-03-2025, 07:39 AM
» Replies: 1
» Views: 209
2 Rendering bugs on iOS(M...
Forum: Obi Fluid
Last Post: cliv3dev
17-03-2025, 02:30 PM
» Replies: 2
» Views: 265

 
  Particle Attatchment Gap Offset When Running
Posted by: Jawsarn - 09-01-2025, 11:36 PM - Forum: Obi Rope - No Replies

Hello! I just recently bought some of the assets, looked through the docs and am experimenting a bit.

I'm trying to do achieve something like a procedural animation for hooking a static object, where the rope is thrown to do a whip like motion to loop around a cylinder for a few turns to get stuck. I've achieved a version of it by using a rope attached to a collider at it's end, and then using a spline to get the desired whip like motion. First I tried to attach a part of the end rope to the spline, but didn't look too good as the big momentum should be with the collider. Now I'm simply moving the collider with the spline as kinematic & then apply the spline velocity at the end and mark it dynamic. I'm all open to suggestions of how to do this animated physics differentley.

I've had some issues with gaps of my Particle Attatchment to the Unity Collider when I run the sequence. I moved from using a SplineAnimator to evaluating the spline myself in fixedUpdate. But it seems I still have to wait for a certain time before I can set the collider in motion. What is the intended way to set up this dependency?
I also seem to have a general issue that particles at the end of the rope are more sparse where I need them more for more defined collision around the cylinder compared to the slag of rope hanging from the hand where I could do with very sparse amount. Is there any way to distribute more particles at the end of rope or mitigate this?

Thanks for any insight or point to docs that I've missed.



Attached Files Thumbnail(s)
   
Print this item

  Closed loop rope, move particles to stretch it
Posted by: alicecatalano - 07-01-2025, 12:55 PM - Forum: Obi Rope - Replies (3)

Good morning,

i am creating a simulation where everytime the game gets loaded there is an example shape around some nails an elastic has to reach. 
the elastic is represented by a closed loop obirope. 

in the start method i call a function that sets the elastic global position based on the shape. Now i woul dlike to actually move 2 or 3 particles to create the shape and hook the nails i need to
private void Start()

{
    repetition = GameManager.Instance.GetCurrentRepetition();
    Debug.Log("repetition is : " + repetition);
    SetNailsAndElastic(repetition);

}

private void SetNailsAndElastic(int repetitionNumber)
{
    GameObject[] allNails = GameObject.FindGameObjectsWithTag("Nail");
    foreach (GameObject nail in allNails)
    {
        nail.GetComponent<Renderer>().material = defaultMaterial;
    }
    switch (repetitionNumber)
    {
        case 1:
            HighlightNails(new string[] { "nail_1_r1", "nail_c_r1" });
            Debug.Log("in rep1");
            elastic.transform.position = new Vector3(-2.17000008f, 0.810000002f, -10.4899998f);
            elastic.TeleportParticle(82, new Vector3(1, 3, 5));

            //elastic.blueprint.positions[82] =  new Vector3(1, 3, 5);

}

this is a small snippet of my code, and this is what i try to do to move that specific particle for example. 
The particle doesn't move though, even if the elastic takes the right position i wrote there

do you have any advice??

Print this item

  ObiNativeList memory leak?
Posted by: CptnFabulous - 05-01-2025, 09:46 AM - Forum: Obi Cloth - Replies (1)

I'm using Obi Cloth 7.0.3, in Unity version 2022.3.51f1.

We have a system that automatically generates meshes and turns them into cloths. We've been troubleshooting issues with inconsistent cloth behaviour, and noticed some leaks. The messages don't seem to specify if they're memory leaks, handle leaks or some other kind of leak.

One of the leak logs. They're all related to line 256 of ObiNativeList, and all occur as a consequence of the solver running Initialize() as part of InsertBufferedActor():

Code:
Found 1 leak(s) from callstack:
0x000002c3843952e3 (Mono JIT Code) UnityEngine.GraphicsBuffer:.ctor (UnityEngine.GraphicsBuffer/Target,int,int)
0x000002c6ab4f44a3 (Mono JIT Code) Obi.ObiNativeList`1<Obi.ForceZone>:AsComputeBuffer<Obi.ForceZone> (int,UnityEngine.GraphicsBuffer/Target) (at C:/Users/marcu/Documents/Bitbucket/Standalone stencil test/Assets/Obi/Scripts/Common/DataStructures/NativeList/ObiNativeList.cs:256)
0x000002c6ab4f43cb (Mono JIT Code) Obi.ObiNativeList`1<Obi.ForceZone>:SafeAsComputeBuffer<Obi.ForceZone> (UnityEngine.GraphicsBuffer/Target) (at C:/Users/marcu/Documents/Bitbucket/Standalone stencil test/Assets/Obi/Scripts/Common/DataStructures/NativeList/ObiNativeList.cs:239)
0x000002c6ab4f431b (Mono JIT Code) Obi.ComputeColliderWorld:SetForceZones (Obi.ObiNativeForceZoneList) (at C:/Users/marcu/Documents/Bitbucket/Standalone stencil test/Assets/Obi/Scripts/Common/Backends/Compute/Collisions/ComputeColliderWorld.cs:239)
0x000002c383c08eea (Mono JIT Code) Obi.ObiColliderWorld:UpdateWorld (single) (at C:/Users/marcu/Documents/Bitbucket/Standalone stencil test/Assets/Obi/Scripts/Common/Collisions/ObiColliderWorld.cs:600)
0x000002c6ab4e105b (Mono JIT Code) Obi.ObiSolver:Initialize () (at C:/Users/marcu/Documents/Bitbucket/Standalone stencil test/Assets/Obi/Scripts/Common/Solver/ObiSolver.cs:1267)
0x000002c6ab4e036b (Mono JIT Code) Obi.ObiSolver:InsertBufferedActor (Obi.ObiActor) (at C:/Users/marcu/Documents/Bitbucket/Standalone stencil test/Assets/Obi/Scripts/Common/Solver/ObiSolver.cs:1971)
0x000002c383c1c343 (Mono JIT Code) Obi.ObiSolver:StartSimulation (single,int) (at C:/Users/marcu/Documents/Bitbucket/Standalone stencil test/Assets/Obi/Scripts/Common/Solver/ObiSolver.cs:1611)
0x000002c383c1b8b3 (Mono JIT Code) Obi.ObiSolver:LateUpdate () (at C:/Users/marcu/Documents/Bitbucket/Standalone stencil test/Assets/Obi/Scripts/Common/Solver/ObiSolver.cs:1171)
0x000002c384ad7ae8 (Mono JIT Code) (wrapper runtime-invoke) object:runtime_invoke_void__this__ (object,intptr,intptr,intptr)
0x00007ff8fe104c2e (mono-2.0-bdwgc) mono_jit_runtime_invoke (at C:/build/output/Unity-Technologies/mono/mono/mini/mini-runtime.c:3445)
0x00007ff8fe03d254 (mono-2.0-bdwgc) do_runtime_invoke (at C:/build/output/Unity-Technologies/mono/mono/metadata/object.c:3068)
0x00007ff8fe03d3cc (mono-2.0-bdwgc) mono_runtime_invoke (at C:/build/output/Unity-Technologies/mono/mono/metadata/object.c:3115)
0x00007ff616b87104 (Unity) scripting_method_invoke
0x00007ff616b64d14 (Unity) ScriptingInvocation::Invoke
0x00007ff616b4c4a4 (Unity) MonoBehaviour::CallMethodIfAvailable
0x00007ff616b4c5ca (Unity) MonoBehaviour::CallUpdateMethod
0x00007ff6165de82b (Unity) BaseBehaviourManager::CommonUpdate<LateBehaviourManager>
0x00007ff6165e59fa (Unity) LateBehaviourManager::Update

I know we haven't altered any of this code. The leaks don't occur the first time I enter Play Mode, but do occur after exiting and re-entering Play Mode. It might be a bug with Obi Cloth itself, but the more likely explanation is I'm creating some data that's not being properly disposed of after exiting Play Mode. Then on the next play, the cloth simulation looks for data that has since been destroyed, which causes both the leakage and wonky cloth physics.
What data is created as part of Obi Cloth's standard functionality, that needs to be manually disposed of by the user? I updated the Obi Cloth version to 7.0.3 from 6.5.4, so I imagine there's some part of our code that would have worked fine with the previous version.

Thanks!

Print this item

  Can softbody not deform back with particle picker?
Posted by: AnupamSingh - 26-12-2024, 03:25 PM - Forum: Obi Softbody - Replies (1)

Hi, if I have deformed a softbody using obi particle dragger, is there a way to avoid regaining its original shape once I leave the picker? 
Example use case: simulating mesh flipping without it retracting back automatically, etc.

Print this item

  Broken scripts with update 6 -> 7
Posted by: hariedo - 21-12-2024, 10:35 AM - Forum: Obi Rope - Replies (11)

Had some issues with the update from Obi Rope 6 -> 7 in a project that used Obi Rope 6.  Luckily it's a scratch project.

1.  I tried upgrading on top of the old version but saw script errors so I removed all Obi files and installed fresh instead.  Of course, I have scripts and prefabs that depend on the older Obi files, so all of those break in the process of installation.  Even after the other issues were patched below, my existing code runs into Index Of Of Range errors on trying to load my existing rope blueprints, so now I have to see if it's a code issue or a blueprint schema change issue.  [Edit: I see the forum update guide says you have to regen blueprints.  I'm creating them from code, see below.]

2.  The demo scenes use a resource script called FPSDisplay.  It does not use a namespace, so it conflicted with another script I already had called FPSDisplay.  This caused compilation errors and breaks the script references in scenes that used either one (my existing scenes, as well as your demo scenes.)  Even after I added a namespace to my existing FPSDisplay, the script references were broken, so I had to add a namespace to your file and re-add it to the demo scene objects.  I thought Unity demanded all assets used namespaces to avoid this sort of conflict.  [Edit:  Similar breakage on SlowmoToggler which does not have a namespace (I have no such script but your demo scene had a broken link to it and Unity couldn't find it until I added one).]

3.  Many of your demo scenes use a built-in diffuse material for many objects.  Please define your own material for these objects, so that when I update all materials to URP these objects don't remain pink.

4.  There is no longer a type for ObiFixedUpdater.  I had a script that expected this type to force a regeneration of ropes (as I would deactivate and reactivate ropes in proximity to the player).  The CHANGELOG says all ObiUpdater types have been removed.  No guidance on what to do about scripts that referenced them.



Here is the code I'm trying to migrate.  It generates new blueprints on the fly during Start.

My prefab has four of these, and each one is spitting out Null Reference errors in your DrawGizmos in Edit mode.


Quote:NullReferenceException: Object reference not set to an instance of an object
Obi.ObiRopeCursorEditor.DrawGizmos (Obi.ObiRopeCursor cursor, UnityEditor.GizmoType gizmoType) (at Assets/Plugins/Obi/Editor/RopeAndRod/ObiRopeCursorEditor.cs:75)

Once I try running, I get Index Out Of Bounds errors in your ObiActor.LoadBlueprintParticles, when I provide the generated blueprint to ObiRope.  One error per rope, with different starting index numbers.


Quote:IndexOutOfRangeException: Writing to index 0 is out of range of '0' Capacity.
Obi.ObiNativeList`1[T].set_Item (System.Int32 index, T value) (at Assets/Plugins/Obi/Scripts/Common/DataStructures/NativeList/ObiNativeList.cs:98)
Obi.ObiActor.LoadBlueprintParticles (Obi.ObiActorBlueprint bp) (at Assets/Plugins/Obi/Scripts/Common/Actors/ObiActor.cs:995)
Obi.ObiActor.LoadBlueprint (Obi.ObiSolver solver) (at Assets/Plugins/Obi/Scripts/Common/Actors/ObiActor.cs:1161)
Obi.ObiRope.LoadBlueprint (Obi.ObiSolver solver) (at Assets/Plugins/Obi/Scripts/RopeAndRod/Actors/ObiRope.cs:187)
Screenplay.TightRope.Generate () (at Assets/__SHARED__/Scripts/For/Obi/TightRope.cs:109)
Screenplay.TightRope.Start () (at Assets/__SHARED__/Scripts/For/Obi/TightRope.cs:45)




Code:
// TightRope.cs
//
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Assertions;

using Obi;

namespace Screenplay
{
    //
    // Combines the logic of Obi's RopeBetweenTwoPoints and ObiRopeReel
    // to form a simulated rope between any two transforms, with managed slack.
    //
    public class TightRope: MonoBehaviour, ICraneRope
    {
        public ObiSolver solver;
        public ObiRopeCursor cursor;
        public ObiRope rope;

        public Transform start;
        public ObiParticleAttachment startAttachment;
        public Transform end;
        public ObiParticleAttachment endAttachment;

        public const float MINIMUM_SLACK = 0.0f;
        public const float MAXIMUM_SLACK = 1.0f;
        [Range(MINIMUM_SLACK, MAXIMUM_SLACK)]
        [Tooltip("How much additional length beyond distance from start to end")]
        public float slack = 0.1f;

        [Tooltip("How much change in length required to recalculate rope")]
        public float deltaLength = 0.05f;

        public float cursorMu = 0.5f;
        public float sourceMu = 0.95f;

        private float priorLength = float.NegativeInfinity;

        void Start()
        {
            Generate();

            // the rope actor must be a child under a solver to start the simulation
            transform.SetParent(solver.transform);
        }

        // ICraneRope
        public float GetLength()
        {
            if (priorLength > 0f)
                return priorLength;
            return IdealLength();
        }

        public float GetMaximumSlack() => MAXIMUM_SLACK;

        private float IdealLength()
        {
            float taut = start.Distance(end);
            if (slack < MINIMUM_SLACK)
                slack = MINIMUM_SLACK;
            return taut + slack;
        }

        public void Generate()
        {
            if (start == null || end == null)
                return;

            // Adjust our transform:
            transform.position = start.position;
            transform.rotation = start.rotation;

            // Calculate control point positions and tangent vector:
            Vector3 startPositionLS = transform.InverseTransformPoint(start.position);
            Vector3 endPositionLS = transform.InverseTransformPoint(end.position);
            Vector3 tangentLS = (endPositionLS - startPositionLS).normalized;
            Vector3 normalLS = start.right;

            // Add rope actor / renderer / attachment components:
            rope = gameObject.GetComponent<ObiRope>();
            rope.ropeBlueprint = null;

            // Create the blueprint:
            ObiRopeBlueprint clone;
            clone = ScriptableObject.CreateInstance<ObiRopeBlueprint>();
            clone.resolution = 0.5f;

            // Build the rope path:
            int filter = ObiUtils.MakeFilter(ObiUtils.CollideWithEverything, 0);
            clone.path.AddControlPoint(
                startPositionLS, -tangentLS, tangentLS, normalLS,
                0.1f, 0.1f, 1, filter, Color.white, "start");
            clone.path.AddControlPoint(
                endPositionLS, -tangentLS, tangentLS, normalLS,
                0.1f, 0.1f, 1, filter, Color.white, "end");
            clone.path.FlushEvents();

            // Generate particles/constraints:
            clone.GenerateImmediate();

            // Set the blueprint:
            rope.ropeBlueprint = clone;
            rope.LoadBlueprint(solver);

            cursor = gameObject.GetComponent<ObiRopeCursor>();

            // Attach both ends:
            startAttachment.target = start;
            startAttachment.particleGroup = clone.groups[0];
            endAttachment.target = end;
            endAttachment.particleGroup = clone.groups[1];
        }

        // Update is called once per frame
        void Update()
        {
            // get ideal rest length:
            float restLength = IdealLength();

            // if we haven't changed sufficiently, don't disturb it
            if (Mathf.Abs(restLength - priorLength) < deltaLength)
                return;

            cursor.cursorMu = cursorMu;
            cursor.sourceMu = sourceMu;
            cursor.UpdateCursor();

            // set the new rest length:
            cursor.ChangeLength(restLength);
            priorLength = restLength;
        }
    }

}

Print this item

  Null Reference, actor not loading
Posted by: alicecatalano - 13-12-2024, 12:19 PM - Forum: Obi Rope - Replies (1)

Good morning,

I created a code to grasp an obiRope. It is not the first time i use it and untill now it worked fine, I have anotehr simulation that uses the same logic and I have no issues. 
Now when the simulation starts the obiActor is not loaded in the script, even if i associated the code to it or passed it as a reference. 
The grasping works but badly, and I think it is because of this issue.  
the code:
```
using UnityEngine;
using Obi;
using System.Collections.Generic;

[RequireComponent(typeof(ObiActor))]
public class DistanceAnchor : MonoBehaviour
{
    public ObiActor actor;
    public ObiParticleAttachment attachment;
    public Transform anchor;
    public float anchorRadius = 0.5f;
    private ForcepsControl forcepsControl;

    private int groupIndex;
    private bool isGrasping;
    public bool IsGrasping
    {
        get { return isGrasping; }
    }
   

    void Awake()
    {
        actor = GetComponent<ObiActor>();
        forcepsControl = FindObjectOfType<ForcepsControl>();
        if (forcepsControl != null)
        {
            forcepsControl.OnRestPositionReached += CheckAndAnchorParticles;
            forcepsControl.OnReleasePositionReached += Release;
        }
    }



    void CheckAndAnchorParticles()
    {
        if (!actor.isLoaded)
        {
            Debug.LogError("Actor is not loaded");
            return;
        }

        for (int i = 0; i < actor.solverIndices.count; ++i)
        {
            int solverIndex = actor.solverIndices[i];
            float distance = Vector3.Distance(actor.GetParticlePosition(solverIndex), anchor.position);
            Debug.Log($"Distance to Anchor: {distance}, Grasping State: {isGrasping}");
            if (distance < anchorRadius && !isGrasping)
            {
                Grasp(actor, i);
            }
        }
    }



    private void Grasp(ObiActor actor, int index)
    {
        if (attachment != null)
        {
            Destroy(attachment);
        }

        attachment = actor.gameObject.AddComponent<ObiParticleAttachment>();
        attachment.target = anchor; // Attach to the anchor
        attachment.particleGroup = actor.blueprint.AppendNewParticleGroup("GraspedParticles");
        groupIndex = actor.blueprint.groups.Count - 1; // Ensure it's the last added group
        attachment.particleGroup.particleIndices = new List<int> { index };
        attachment.compliance = 0;
        attachment.attachmentType = ObiParticleAttachment.AttachmentType.Static;
        isGrasping = true;

        actor.solver.RemoveActor(actor); // Refresh the actor in the solver
        actor.solver.AddActor(actor);
    }
    private void Release()
    {
        if (attachment != null)
        {
           
            Destroy(attachment);
            actor.blueprint.RemoveParticleGroupAt(groupIndex);
            actor.solver.RemoveActor(actor); // Refresh the actor in the solver
            actor.solver.AddActor(actor);

            isGrasping = false;
        }
    }


    void OnDestroy()
    {
        if (forcepsControl != null)
        {
            forcepsControl.OnRestPositionReached -= CheckAndAnchorParticles;
            forcepsControl.OnReleasePositionReached -= Release;
        }

        // Ensure to release any grasped particles
        Release();

        // Additional cleanup if needed
        if (attachment != null)
        {
            Destroy(attachment);
            attachment = null;
        }
    }
}
```

the error: 

```
Actor is not loaded
UnityEngine.Debug:LogError (object)
DistanceAnchor:CheckAndAnchorParticles () (at Assets/Scripts/DistanceAnchor.cs:39)
ForcepsControl:UpdateThimbleRotation () (at Assets/Scripts/ForcepsControl.cs:70)
ForcepsControl:Update () (at Assets/Scripts/ForcepsControl.cs:51)

NullReferenceException: Object reference not set to an instance of an object
DistanceAnchor.CheckAndAnchorParticles () (at Assets/Scripts/DistanceAnchor.cs:43)
ForcepsControl.Update () (at Assets/Scripts/ForcepsControl.cs:48)
```

Print this item

  Changing extruded renderer's material runtime
Posted by: aderae - 10-12-2024, 05:04 PM - Forum: Obi Rope - Replies (2)

Hello,

I have a logic where I need to change the ropes material during runtime. I tried setting obiRopeExtrudedRenderer.material = new Material(copyFrom); it looks like the material is changed in the component itself but it doesn't effect the renderer. I assume this is cached on start. Is there a way to do this?

Thanks

Print this item

  Issue with Grasping ObiRope Using Two ToolsGood morning, I’m encountering a strange
Posted by: alicecatalano - 10-12-2024, 10:45 AM - Forum: Obi Rope - Replies (5)

Good morning,
I’m encountering a strange issue with grasping a closed-loop ObiRope using two tools. My goal is to grasp different points on the rope with each tool, without using constraints.
The Problem:

  • If I grasp the rope with the left tool first and then with the right tool, everything works as expected. Both tools hold their grasping points correctly.
  • However, if I grasp the rope with the right tool first and then with the left tool, the following happens:
    • The right tool keeps its constraint but the grasped particle shifts to a position far away from the intended grasping point, while still visually connected to the tip of the tool.
    • The rope responds to tool movements but maintains this unnatural offset for the right tool.
  • The issue only happens when the right tool is the second to grasp, and it occurs inconsistently.
I’ve attached an image showing the situation. The rope becomes distorted, with the grasped particle connected incorrectly.
What I’ve Tried:
  • Confirming the attachments are created dynamically at runtime without pre-existing constraints.
  • Checking that particle indices are updated correctly during grasping.
  • Ensuring the tools have unique attachment components.
Image Explanation:
In the attached image:
  • The left tool is holding the rope correctly.
  • The right tool exhibits the described offset issue when grasping second.

Question: Why does this behavior occur when the right tool is the second one to grasp? Could this be a bug in ObiRope's particle attachment system, or am I missing something in the setup?
Thank you for any insights or suggestions!

Print this item

  Path editor gizmo's appear very small
Posted by: MisterToot - 10-12-2024, 07:36 AM - Forum: Obi Rope - Replies (2)

Helloo, this occurred quite a while back for me and I've been able to work around it but I thought I might as well see if it can be fixed!

as you can see (though they are quite small) the handles and particle sphere gizmos that appear while in the rope blueprint path editor were at some point shrunk by me... and I'm not sure how to unshrink them as the regular 3D gizmo size slider doesn't seem to affect them. 

Thanks!



Attached Files Thumbnail(s)
       
Print this item

Pregunta Barrier belt - changing length and moving anchors
Posted by: IceTrooper - 09-12-2024, 11:22 PM - Forum: Obi Rope - Replies (1)

Hey, I would like to, in my VR app, make a barrier belt, like in cinemas at the box office or airports to cordon off aisles.

[Image: AIG2730470.jpg]





This is my script that I made along the lines of a similar script I found in examples (grapling hook) (I cannot post it in the message because of error)
https://pastebin.com/sC54e9fh





I noticed three main problems:


1.  A visual bug, as if the UV scale increases indefinitely. I have no idea what this could be. (video in attachments)






[Image: 2tIK7eT.png]






[Image: PxpYDYM.png]






[Image: HmqTk1Q.png]







[Image: eW9CFzY.png]




2. Particles are not forming where the Rope length has been increased. You can see better in the screenshot what I mean.




[Image: U0eUoRo.png]






3. When I move an object quickly in the editor, the Obi Particle Attachment doesn't seem to keep up. Does this problem only occur in the editor? Is there any way to improve it? (video in attachments)




[Image: kDJeZq4.png]






4. When I select the ‘Roll-Out Rope’ object on the hierarchy then I get a spam on the console:



Code:
Look rotation viewing vector is zero

UnityEngine.Quaternion:LookRotation (UnityEngine.Vector3)

Obi.ObiRopeCursorEditor:DrawGizmos (Obi.ObiRopeCursor,UnityEditor.GizmoType) (at Assets/Obi/Editor/RopeAndRod/ObiRopeCursorEditor.cs:91)

UnityEngine.GUIUtility:ProcessEvent(int,intptr,bool&).





I need help with these problems described above. Maybe this can be written better using other APIs, if so I would welcome comments. Sonrisa

Print this item