-
Notifications
You must be signed in to change notification settings - Fork 0
/
ard_integer.py
44 lines (38 loc) · 1.42 KB
/
ard_integer.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
"""
@author: initials AMA
@title: Ardenius
@nickname: Ardenius
@description: ARD integer: outputs an integer number
"""
# licensed under General Public License v3.0 all rights reserved © 2024
# Owner initials: AMAA
# nickname: Ardenius
# email: ardenius7@gmail.com
# website: https://ko-fi.com/ardenius
# ➡️ follow me at https://ko-fi.com/ardenius in the top right corner (follow)
# 📸 Change the mood ! by Visiting my AI Image Gallery
# 🏆 Support me by getting Premium Members only Perks (Premium SD Models, ComfyUI custom nodes, and more to come)
# below code is based upon ComfyUI code licensed under General Public License v3.0 https://www.gnu.org/licenses/gpl-3.0.txt by
# contributers found here https://github.com/comfyanonymous/ComfyUI
# thus all code here is released to the user as per the GPL V3.0 terms.
class ARD_INTEGER:
# def __init__(self):
# pass
@classmethod
def INPUT_TYPES(cls):
return {
"required": {
"Ix": ("INT", {"default": 1, "tooltip": "input an integer or float"})
}
}
RETURN_NAMES = ("integer",)
RETURN_TYPES = ("INT",)
FUNCTION = "ard_integer"
CATEGORY = "Ardenius"
DESCRIPTION = "ARD integer: outputs an integer number"
def ard_integer(self, Ix):
if not isinstance(Ix, int):
output_integer = int(Ix)
else:
output_integer = Ix
return (output_integer,)