Modiferty | Property Modification for Unity

 by   mackysoft C# Version: 1.1.2 License: MIT

kandi X-RAY | Modiferty Summary

kandi X-RAY | Modiferty Summary

Modiferty is a C# library. Modiferty has no bugs, it has no vulnerabilities, it has a Permissive License and it has low support. You can download it from GitHub.

Modiferty is a great solution for making modifications to properties. In games, there are often situations in which the status of characters, weapons, etc. temporarily change. Modiferty can be used in the following situations. Download any version from releases. Add "MackySoft.Modiferty" namespace into using area. The following code implements a temporary increase the character attack power. If you want to modify the value without using ModifiableProperty, use a ModifierList. ModifiableList is also used in the ModifiableProperty implementation. Basic operator modifiers are provided. A variety of other unique modifiers are also available. The given value ignored and the specified value returned. The lambda formula allows you to improvise complex modifiers. Modiferty supports integration with some external assets. Install UniRx and define MODIFERTY_UNIRX to enable integration with UniRx. The integration with UniRx mainly adds the following APIs to allow you to observe the values of Modiferty. Hiroya Aramaki is a indie game developer in Japan. This library is under the MIT License.
Support
    Quality
      Security
        License
          Reuse

            kandi-support Support

              Modiferty has a low active ecosystem.
              It has 5 star(s) with 2 fork(s). There are 1 watchers for this library.
              OutlinedDot
              It had no major release in the last 12 months.
              Modiferty has no issues reported. There are no pull requests.
              It has a neutral sentiment in the developer community.
              The latest version of Modiferty is 1.1.2

            kandi-Quality Quality

              Modiferty has no bugs reported.

            kandi-Security Security

              Modiferty has no vulnerabilities reported, and its dependent libraries have no vulnerabilities reported.

            kandi-License License

              Modiferty is licensed under the MIT License. This license is Permissive.
              Permissive licenses have the least restrictions, and you can use them in most projects.

            kandi-Reuse Reuse

              Modiferty releases are available to install and integrate.
              Installation instructions are not available. Examples and code snippets are available.

            Top functions reviewed by kandi - BETA

            kandi's functional review helps you automatically verify the functionalities of the libraries and avoid rework.
            Currently covering the most popular Java, JavaScript and Python libraries. See a Sample of Modiferty
            Get all kandi verified functions for this library.

            Modiferty Key Features

            No Key Features are available at this moment for Modiferty.

            Modiferty Examples and Code Snippets

            External Assets , UniRx
            C#dot img1Lines of Code : 28dot img1License : Permissive (MIT)
            copy iconCopy
            using UnityEngine;
            using UnityEngine.UI;
            using MackySoft.Modiferty;
            using UniRx;
            
            public class Character : MonoBehaviour {
            
            	// Define attackPower as ReactiveModifiableProperty.
            	public ReactiveModifiableInt attackPower = new ReactiveModifiableInt(ba  
            Usage
            C#dot img2Lines of Code : 24dot img2License : Permissive (MIT)
            copy iconCopy
            using MackySoft.Modiferty;
            
            public class Character : MonoBehaviour {
            
            	public int health = 3;
            	public ModifiableInt attackPower = new ModifiableInt(baseValue: 1);
            
            	public void Attack (Character target){
            		target.health -= attackPower.Evaluate();
            	}
              
            Modifier Types , Create Modifier
            C#dot img3Lines of Code : 7dot img3License : Permissive (MIT)
            copy iconCopy
            var createModifier = new CreateModifier(value => {
            	int result;
            
            	// Do something process...
            
            	return result;
            });
              

            Community Discussions

            No Community Discussions are available at this moment for Modiferty.Refer to stack overflow page for discussions.

            Community Discussions, Code Snippets contain sources that include Stack Exchange Network

            Vulnerabilities

            No vulnerabilities reported

            Install Modiferty

            You can download it from GitHub.

            Support

            For any new features, suggestions and bugs create an issue on GitHub. If you have any questions check and ask questions on community page Stack Overflow .
            Find more information at:

            Find, review, and download reusable Libraries, Code Snippets, Cloud APIs from over 650 million Knowledge Items

            Find more libraries
            CLONE
          • HTTPS

            https://github.com/mackysoft/Modiferty.git

          • CLI

            gh repo clone mackysoft/Modiferty

          • sshUrl

            git@github.com:mackysoft/Modiferty.git

          • Stay Updated

            Subscribe to our newsletter for trending solutions and developer bootcamps

            Agree to Sign up and Terms & Conditions

            Share this Page

            share link