@@ -1708,6 +1708,143 @@ export function sortAutocompleteResults(results, incomplete) {
17081708 id : 'hermite_blend' ,
17091709 arguments : [ '0_to_1' ] ,
17101710 } )
1711+ . addQuery ( {
1712+ id : 'min_angle' ,
1713+ arguments : [ 'angle' ] ,
1714+ } )
1715+ . addQuery ( {
1716+ id : 'sign' ,
1717+ arguments : [ 'vaule' ] ,
1718+ } )
1719+ . addQuery ( {
1720+ id : 'copy_sign' ,
1721+ arguments : [ 'value' , 'sign' ] ,
1722+ } )
1723+ . addQuery ( {
1724+ id : 'inverse_lerp' ,
1725+ arguments : [ 'start' , 'end' , 'value' ] ,
1726+ } )
1727+ . addQuery ( {
1728+ id : 'ease_in_quad' ,
1729+ arguments : [ 'start' , 'end' , '0_to_1' ] ,
1730+ } )
1731+ . addQuery ( {
1732+ id : 'ease_out_quad' ,
1733+ arguments : [ 'start' , 'end' , '0_to_1' ] ,
1734+ } )
1735+ . addQuery ( {
1736+ id : 'ease_in_out_quad' ,
1737+ arguments : [ 'start' , 'end' , '0_to_1' ] ,
1738+ } )
1739+ . addQuery ( {
1740+ id : 'ease_in_cubic' ,
1741+ arguments : [ 'start' , 'end' , '0_to_1' ] ,
1742+ } )
1743+ . addQuery ( {
1744+ id : 'ease_out_cubic' ,
1745+ arguments : [ 'start' , 'end' , '0_to_1' ] ,
1746+ } )
1747+ . addQuery ( {
1748+ id : 'ease_in_out_cubic' ,
1749+ arguments : [ 'start' , 'end' , '0_to_1' ] ,
1750+ } )
1751+ . addQuery ( {
1752+ id : 'ease_in_quart' ,
1753+ arguments : [ 'start' , 'end' , '0_to_1' ] ,
1754+ } )
1755+ . addQuery ( {
1756+ id : 'ease_out_quart' ,
1757+ arguments : [ 'start' , 'end' , '0_to_1' ] ,
1758+ } )
1759+ . addQuery ( {
1760+ id : 'ease_in_out_quart' ,
1761+ arguments : [ 'start' , 'end' , '0_to_1' ] ,
1762+ } )
1763+ . addQuery ( {
1764+ id : 'ease_in_quint' ,
1765+ arguments : [ 'start' , 'end' , '0_to_1' ] ,
1766+ } )
1767+ . addQuery ( {
1768+ id : 'ease_out_quint' ,
1769+ arguments : [ 'start' , 'end' , '0_to_1' ] ,
1770+ } )
1771+ . addQuery ( {
1772+ id : 'ease_in_out_quint' ,
1773+ arguments : [ 'start' , 'end' , '0_to_1' ] ,
1774+ } )
1775+ . addQuery ( {
1776+ id : 'ease_in_sine' ,
1777+ arguments : [ 'start' , 'end' , '0_to_1' ] ,
1778+ } )
1779+ . addQuery ( {
1780+ id : 'ease_out_sine' ,
1781+ arguments : [ 'start' , 'end' , '0_to_1' ] ,
1782+ } )
1783+ . addQuery ( {
1784+ id : 'ease_in_out_sine' ,
1785+ arguments : [ 'start' , 'end' , '0_to_1' ] ,
1786+ } )
1787+ . addQuery ( {
1788+ id : 'ease_in_expo' ,
1789+ arguments : [ 'start' , 'end' , '0_to_1' ] ,
1790+ } )
1791+ . addQuery ( {
1792+ id : 'ease_out_expo' ,
1793+ arguments : [ 'start' , 'end' , '0_to_1' ] ,
1794+ } )
1795+ . addQuery ( {
1796+ id : 'ease_in_out_expo' ,
1797+ arguments : [ 'start' , 'end' , '0_to_1' ] ,
1798+ } )
1799+ . addQuery ( {
1800+ id : 'ease_in_circ' ,
1801+ arguments : [ 'start' , 'end' , '0_to_1' ] ,
1802+ } )
1803+ . addQuery ( {
1804+ id : 'ease_out_circ' ,
1805+ arguments : [ 'start' , 'end' , '0_to_1' ] ,
1806+ } )
1807+ . addQuery ( {
1808+ id : 'ease_in_out_circ' ,
1809+ arguments : [ 'start' , 'end' , '0_to_1' ] ,
1810+ } )
1811+ . addQuery ( {
1812+ id : 'ease_in_bounce' ,
1813+ arguments : [ 'start' , 'end' , '0_to_1' ] ,
1814+ } )
1815+ . addQuery ( {
1816+ id : 'ease_out_bounce' ,
1817+ arguments : [ 'start' , 'end' , '0_to_1' ] ,
1818+ } )
1819+ . addQuery ( {
1820+ id : 'ease_in_out_bounce' ,
1821+ arguments : [ 'start' , 'end' , '0_to_1' ] ,
1822+ } )
1823+ . addQuery ( {
1824+ id : 'ease_in_back' ,
1825+ arguments : [ 'start' , 'end' , '0_to_1' ] ,
1826+ } )
1827+ . addQuery ( {
1828+ id : 'ease_out_back' ,
1829+ arguments : [ 'start' , 'end' , '0_to_1' ] ,
1830+ } )
1831+ . addQuery ( {
1832+ id : 'ease_in_out_back' ,
1833+ arguments : [ 'start' , 'end' , '0_to_1' ] ,
1834+ } )
1835+ . addQuery ( {
1836+ id : 'ease_in_elastic' ,
1837+ arguments : [ 'start' , 'end' , '0_to_1' ] ,
1838+ } )
1839+ . addQuery ( {
1840+ id : 'ease_out_elastic' ,
1841+ arguments : [ 'start' , 'end' , '0_to_1' ] ,
1842+ } )
1843+ . addQuery ( {
1844+ id : 'ease_in_out_elastic' ,
1845+ arguments : [ 'start' , 'end' , '0_to_1' ] ,
1846+ } )
1847+
17111848 )
17121849 . addNamespace (
17131850 new MolangAutocomplete . Namespace ( {
0 commit comments