playMaker

Recent Posts

Pages: 1 ... 7 8 [9] 10
81
PlayMaker Help / About template is not working
« Last post by daodao on March 25, 2024, 10:26:07 PM »
Hi, I am using Unity 2.22.3.17 and I have imported PlayMaker into the project. In editor mode, the state machine I created or the template I saved works. But when I run the PC version of the build, it doesn't play right where the template is used. If I replace the template with a state machine that has the same effect, there is no problem.Why, please? thanks.
82
PlayMaker Help / Re: 2D Explosion and Forces not Working
« Last post by AbeDieckman on March 24, 2024, 11:27:53 PM »
Thanks, all. Appreciate the help.

Although I never got the action to work, I was able to ask ChatGTP to write an action for me to create a force effect, and it worked great.
83
PlayMaker Help / Re: PlayMaker Missing Action (Easy Save 3)
« Last post by ken168 on March 24, 2024, 04:00:56 AM »
Later I solved this problem

I created a new project and imported Playmaker and Easy Save3
It is functioning properly, confirming the following:
Edit > Project Settings > Player >Script Compilation > Scripting Define Symbols

Then go back to the project that is running abnormally and go to the same place to confirm:
Edit > Project Settings > Player >Script Compilation > Scripting Define Symbols

Compare the differences between the two,
In Scripting Define Symbols, there should be Playmaker related content, but in the project that is running abnormally, it disappears.
After adding the content, it is now back to normal.

But why did it disappear?
Why doesn't it recover on its own after removing and reinstalling Playmaker?
84
PlayMaker Help / PlayMaker Missing Action (Easy Save 3)
« Last post by ken168 on March 23, 2024, 10:09:00 AM »
Hello

I used easy save3 to construct the archive process, and it ran smoothly.
But after starting the project today, Missing Action appeared in FSM.
And only the ES3 related Action disappeared, I can no longer find any Action about ES3.

I tried deleting the Easy Save 3 folder (Assets/Plugins/Easy Save 3) and re-importing Easy Save 3, but it did not solve the problem.

But I started a new project and re-imported Easy Save 3, but the new project Easy Save 3 ran normally?

How can I solve the problem? Thanks.

Thanks
85
The decision to use Playmaker or any other visual scripting tool ultimately depends on your specific needs, preferences, and project requirements. Playmaker can be a powerful tool for prototyping, rapid development, and creating gameplay logic without writing traditional code.
86
PlayMaker Help / Movement back and forth with unity and playmaker
« Last post by JoeTaylor on March 23, 2024, 01:42:02 AM »
 >:( >:( >:(
Movement back and forth with unity and playmaker!
Please help me!
I've been here for hours!
87
I'm biased but I think it's a good tool. Keep things simple at first like for any project. Try to find a few finished projects available on the Asset Store that use PM.
Stick to PC programming with Playmaker. If you want to dabble in mobile games, only do it on iOS. IMHO the real issue lies outside of Playmaker and this is where Android will be hard to work on.
88
PlayMaker Help / Re: PlayMaker + Emerald Ai 2024
« Last post by Broken Stylus on March 22, 2024, 06:46:35 PM »
How does it work?
89
Also I asked AI to help me but the code provided by ai doesn't work

Code: [Select]
using UnityEngine;
using HutongGames.PlayMaker;

public class Align2DImageWith3DObject : FsmStateAction
{
    public FsmObject image2D;
    public FsmObject object3D;
    public FsmObject mainCamera;

    public override void OnUpdate()
    {
        // Convert the 3D object's position to screen space.
        Vector3 screenPosition = ((Camera)mainCamera.Value).WorldToViewportPoint(((GameObject)object3D.Value).transform.position);

        // Convert the viewport position to a position that can be used for the RectTransform.
        Vector2 proportionalPosition = new Vector2(screenPosition.x * Screen.width, screenPosition.y * Screen.height);

        // Update the 2D image's position.
        ((RectTransform)image2D.Value).localPosition = proportionalPosition;
    }
}
90
Hello, everyone. I need some help with this issue. I have a 3D crosshair in front of my gun, but it passes through walls and objects. So I need a 2D crosshair to solve this problem, but I’m not sure how to align the 2D crosshair with the object that’s in front of my gun. Any advice would be appreciated
Pages: 1 ... 7 8 [9] 10