UIS 1.2.22 no longer compile after upgrading UCC to 3.1.3 (from 3.1.1)

kafukafu

New member
It seems that something is changed in Assets\Opsive\Shared\Runtime\Utility\Opsive.Shared.Utility.dll by UCC 3.1.3
UIS now fails with:

Assets\Opsive\UltimateInventorySystem\Scripts\UI\Grid\FilterSorter.cs(98,31): error CS1061: 'ItemInfo[]' does not contain a definition for 'ResizeIfNecessary' and no accessible extension method 'ResizeIfNecessary' accepting a first argument of type 'ItemInfo[]' could be found (are you missing a using directive or an assembly reference?)

Could you please investigate?
 
Installing UIS after UCC worked! thanks!

Actually I'm upgrading to 3.1.3 to see if the Capsule Collider Positioner's Center Offset issue is fixed.

But still it pops an error when I try to modify that. See the attached screen shot.

Any ideas how to configure that?

Thanks!
 

Attachments

  • centeroffset.png
    centeroffset.png
    514.4 KB · Views: 4
Line 286 points to:

Code:
m_CapsuleCollider.center += delta;

The only way I can see for m_CapsuleCollider to be null is if you don't have the collider on the same GameObject or you are updating the center before Awake is called. It looks like you have a CapsuleCollider though so at what point are you updating the value?
 
Back
Top