primitive.Textures.GetFace Refresh #66
Unanswered
dev-serena
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Hello,
I don't know how to explain my question then i will put an exemple:
For a slot machine or light traffic in 3D view with viewer or radegast 3D view when texture coordinate change i can see instantaneous.
with consolae with testclient modified it work .
But in winform or wpf when i try
` public string GetCoord()
{
guuid = ConfigurationManager.AppSettings["uuid"];
Predicate<OpenMetaverse.Primitive> match = null;
UUID primID;
if (UUID.TryParse(guuid, out primID))
{
if (match == null)
{
match = prim => prim.ID == primID;
}
private void button1_Click(object sender, EventArgs e)
{
UUID fromAgentID;
string guuidround = "3a79a318-1ae9-fa8e-8bcf-5ae72f5d6660";
It work good for first try but after i need to wait some second before received the good result.
Is there something to do for refresh fast?
Best Regards
All reactions