You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi FernRP!
Can i execute SD Graph in runtime mode?
I tried this code, no errors, no reaction from the a1111 terminal.
Thanks for answer!
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using FernNPRCore;
using FernNPRCore.SDNodeGraph;
using UnityEngine.SceneManagement;
public class SDGTest : MonoBehaviour
{
public StableDiffusionGraph sd;
void Start()
{
sd.LinkToScene(SceneManager.GetActiveScene());
SDStartNode ss;
sd.nodes.ForEach((n) =>
{
if (n != null && n is SDStartNode)
{
ss = n as SDStartNode;
ss.OnExecute();
} else { return; }
});
}
}
The text was updated successfully, but these errors were encountered:
Hi FernRP!
Can i execute SD Graph in runtime mode?
I tried this code, no errors, no reaction from the a1111 terminal.
Thanks for answer!
The text was updated successfully, but these errors were encountered: