Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Fleece

A dialogue manager for Unity that doesn't fray at the edges. · By KaiClavier

Window Dragging Bug?

A topic by Autumn Rain created Sep 01, 2019 Views: 178 Replies: 3
Viewing posts 1 to 3
(1 edit)

Hey I just got fleece, and I'm excited to start using it, but I noticed this when I drag the window, it seems like the selection box is dragged along as I try to drag the window around. (I'm on mac, BTW)

https://gyazo.com/23038d76651b4ac4dc1923afd9c72f8e

Developer

Oh, thank you for the video! This was reported to me before and I wasn't totally sure what was happening... Aside from being a graphical error, it should still be usable, but I'll update the support ticket and try to fix it soon! It's gotta just be a boolean I'm forgetting to uncheck...

Developer

Okay, I think i have a solution!

Around line 867 of FleeceWindow.cs, there's an if statement that looks like

"if(currentMousePos != mouseDragStart)..."

change that to...

"if(drawingSelectionBox)"

I think this was some old code I forgot to update. Let me know if this works for you! I was able to repro the bug in a *similar* way initially, but not exactly. But the box doesn't seem to appear for me anymore after this.

Yay it's fixed! Thank you so much!