Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Spline object on a spline path
#12
Hi,
  1. I looked in the code of the FloatRegion attribute to try to understand. Before telling you what I found, just to give you context, FloatRegion and all the DevTools folder is a third party library. I don't own that code. So like you, I just use it to make my product, as you use Curvy to make yours. So after digging in the code, I found why the FloatRegion did not work for you: it is because the FloatRegion attribute needs a property in your code to retrieve options of the regions to display. In other words, you need to write this
    Code:
    [FloatRegion(UseSlider = true, RegionOptionsPropertyName = "TestRegionOptions", Precision = 4)]
       public FloatRegion TestRegion = FloatRegion.ZeroOne;

       RegionOptions<float> TestRegionOptions
       {
           get
           {
               return RegionOptions<float>.MinMax(0, 1);
           }
       }
    As you can see, the TestRegionOptions property provides a RegionOptions. There you can make it return other options depending on your need.
    This answer removed a hurdle from your path, but in my opinion you are following the wrong path, because ...
  2. ... there is a way simple solution: use Unity's Range attribute. Check their doc for more
  3. The difference between ShapeExtrusion's Range and SplineController's Position is that they don't use the same property drawer. The latter uses RangeEx, an extension of the Range attribute, that allows for dynamic values
Please consider leaving a review for Curvy. This will help a lot keeping Curvy relevant in the eyes of the Asset Store algorithm.
Reply


Messages In This Thread
Spline object on a spline path - by ATHellboy - 02-11-2020, 01:14 PM
RE: Spline object on a spline path - by _Aka_ - 02-14-2020, 10:47 AM
RE: Spline object on a spline path - by ATHellboy - 02-16-2020, 04:54 AM
RE: Spline object on a spline path - by _Aka_ - 02-16-2020, 08:08 PM
RE: Spline object on a spline path - by ATHellboy - 02-17-2020, 09:43 AM
RE: Spline object on a spline path - by _Aka_ - 02-17-2020, 11:56 AM
RE: Spline object on a spline path - by _Aka_ - 02-17-2020, 12:16 PM
RE: Spline object on a spline path - by ATHellboy - 02-17-2020, 12:32 PM
RE: Spline object on a spline path - by ATHellboy - 02-19-2020, 03:21 PM
RE: Spline object on a spline path - by _Aka_ - 02-20-2020, 01:33 AM
RE: Spline object on a spline path - by ATHellboy - 02-20-2020, 05:45 AM
RE: Spline object on a spline path - by _Aka_ - 02-23-2020, 12:01 AM
RE: Spline object on a spline path - by ATHellboy - 02-23-2020, 04:41 AM
RE: Spline object on a spline path - by ATHellboy - 02-23-2020, 07:19 AM
RE: Spline object on a spline path - by _Aka_ - 02-25-2020, 12:11 AM
RE: Spline object on a spline path - by _Aka_ - 02-25-2020, 12:17 AM
RE: Spline object on a spline path - by ATHellboy - 02-26-2020, 03:44 PM
RE: Spline object on a spline path - by _Aka_ - 02-29-2020, 11:19 PM
RE: Spline object on a spline path - by _Aka_ - 02-29-2020, 11:46 PM
RE: Spline object on a spline path - by ATHellboy - 03-01-2020, 09:30 AM
RE: Spline object on a spline path - by _Aka_ - 03-01-2020, 03:12 PM
RE: Spline object on a spline path - by ATHellboy - 03-01-2020, 04:37 PM
RE: Spline object on a spline path - by _Aka_ - 03-01-2020, 05:03 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Rasterized Path Range issue proton 3 15 Yesterday, 09:26 AM
Last Post: proton
  Incorrect mesh alignment after extrusion on curved path Thinkurvy 10 21 04-17-2024, 10:57 AM
Last Post: _Aka_
  Curvy Line Renderer for UI Spline? gekido 3 6 04-04-2024, 12:56 PM
Last Post: _Aka_
  Get position of all control points for a spline gekido 1 6 03-28-2024, 10:08 PM
Last Post: _Aka_

Forum Jump: